public static enum StartDateCompensation.CompensationMethod extends Enum<StartDateCompensation.CompensationMethod>
列挙型定数と説明 |
---|
AFTER
実行予定日が休業日に当たる場合、実行予定日のあとの日に振り替え.
|
BEFORE
実行予定日が休業日に当たる場合、実行予定日の前の日に振り替え.
|
CANCEL
実行予定日が休業日に当たる場合、ジョブネットを実行しない.
|
NOT_CONSIDER
実行予定日が休業日であっても実行する.
|
修飾子とタイプ | メソッドと説明 |
---|---|
String |
getCode() |
static StartDateCompensation.CompensationMethod |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static StartDateCompensation.CompensationMethod |
valueOfCode(String code)
コード値に該当する列挙型のインスタンスを返す.
|
static StartDateCompensation.CompensationMethod[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final StartDateCompensation.CompensationMethod BEFORE
public static final StartDateCompensation.CompensationMethod AFTER
public static final StartDateCompensation.CompensationMethod CANCEL
public static final StartDateCompensation.CompensationMethod NOT_CONSIDER
public static StartDateCompensation.CompensationMethod[] values()
for(StartDateCompensation.CompensationMethod c: StartDateCompensation.CompensationMethod.values()) System.out.println(c);
public static StartDateCompensation.CompensationMethod valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合NullPointerException
- 引数がnullの場合public String getCode()
public static final StartDateCompensation.CompensationMethod valueOfCode(String code)
code
- コード値IllegalArgumentException
- 該当するインスタンスが見つからない場合Copyright © 2016. All rights reserved.