public static enum StartDate.CountingMethod extends Enum<StartDate.CountingMethod>
列挙型定数と説明 |
---|
ABSOLUTE
絶対日数.
|
BUSINESS_DAY
運用日数.
|
NON_BUSINESS_DAY
休業日数.
|
RELATIVE
相対日数.
|
修飾子とタイプ | メソッドと説明 |
---|---|
static StartDate.CountingMethod |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static StartDate.CountingMethod[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final StartDate.CountingMethod ABSOLUTE
public static final StartDate.CountingMethod RELATIVE
public static final StartDate.CountingMethod BUSINESS_DAY
public static final StartDate.CountingMethod NON_BUSINESS_DAY
public static StartDate.CountingMethod[] values()
for(StartDate.CountingMethod c: StartDate.CountingMethod.values()) System.out.println(c);
public static StartDate.CountingMethod valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合NullPointerException
- 引数がnullの場合Copyright © 2016. All rights reserved.