Skip to content

Commit 645c990

Browse files
doc: add @deprecated into cmpInt and cmpUint
1 parent c669edc commit 645c990

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

libcobj/app/src/main/java/jp/osscons/opensourcecobol/libcobj/data/AbstractCobolField.java

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -414,10 +414,10 @@ public int divRemainder(int opt) throws CobolStopRunException {
414414
}
415415

416416
/**
417-
* TODO: 準備中
418-
*
419-
* @param n TODO: 準備中
420-
* @return TODO: 準備中
417+
* 整数値との比較を行う
418+
* @deprecated 代わりにcmpIntegerを使用してください
419+
* @param n 比較対象の整数値
420+
* @return 保持する数値データの比較を行い,this<nなら負の値,this==nなら0,this>nなら正の値
421421
*/
422422
public int cmpInt(int n) {
423423
CobolDecimal d1 = this.getDecimal();
@@ -427,10 +427,10 @@ public int cmpInt(int n) {
427427
}
428428

429429
/**
430-
* TODO: 準備中
431-
*
432-
* @param n TODO: 準備中
433-
* @return TODO: 準備中
430+
* 整数値との比較を行う
431+
* @deprecated 代わりにcmpIntegerを使用してください
432+
* @param n 比較対象の整数値
433+
* @return 保持する数値データの比較を行い,this<nなら負の値,this==nなら0,this>nなら正の値
434434
*/
435435
public int cmpInt(long n) {
436436
return this.cmpInt((int) n);
@@ -458,20 +458,20 @@ public int cmpInteger(int n) {
458458
}
459459

460460
/**
461-
* TODO: 準備中
462-
*
463-
* @param n TODO: 準備中
464-
* @return TODO: 準備中
461+
* 整数値との比較を行う
462+
* @deprecated 代わりにcmpIntegerを使用してください
463+
* @param n 比較対象の整数値
464+
* @return 保持する数値データの比較を行い,this<nなら負の値,this==nなら0,this>nなら正の値
465465
*/
466466
public int cmpUint(int n) {
467467
return this.cmpInt(n);
468468
}
469469

470470
/**
471-
* TODO: 準備中
472-
*
473-
* @param n TODO: 準備中
474-
* @return TODO: 準備中
471+
* 整数値との比較を行う
472+
* @deprecated 代わりにcmpIntegerを使用してください
473+
* @param n 比較対象の整数値
474+
* @return 保持する数値データの比較を行い,this<nなら負の値,this==nなら0,this>nなら正の値
475475
*/
476476
public int cmpUint(long n) {
477477
return this.cmpUint((int) n);

0 commit comments

Comments
 (0)