public enum JobStatus extends Enum<JobStatus>
修飾子とタイプ | メソッドと説明 |
---|---|
String |
getCode() |
String |
getLabel() |
static JobStatus |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static JobStatus |
valueOfCode(String code)
コードに対応するインスタンスを返す.
|
static JobStatus[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final JobStatus NO_PLAN
public static final JobStatus TIME_WAIT
public static final JobStatus TERM_WAIT
public static final JobStatus HOLDING
public static final JobStatus EXEC_WAIT
public static final JobStatus UNEXEC
public static final JobStatus UNEXEC_W
public static final JobStatus BYPASS
public static final JobStatus RUNNING
public static final JobStatus QUEUING
public static final JobStatus AB_CONT
public static final JobStatus WA_CONT
public static final JobStatus NORMAL
public static final JobStatus NORMAL_FALSE
public static final JobStatus WARNNING
public static final JobStatus ABNORMAL
public static final JobStatus ABNORMAL_WR
public static final JobStatus EXEC_DEFFER
public static final JobStatus INVALID_SEQ
public static final JobStatus INTERRUPT
public static final JobStatus KILL
public static final JobStatus KILL_WR
public static final JobStatus FAIL
public static final JobStatus FAIL_WR
public static final JobStatus UNKNOWN
public static final JobStatus UNKNOWN_WR
public static final JobStatus SHUTDOWN
public static final JobStatus CONDITION_WAIT
public static final JobStatus MONITORING
public static final JobStatus UNEXEC_MONITOR
public static final JobStatus MONITOR_CLOSE
public static final JobStatus MONITOR_INTRPT
public static final JobStatus MONITOR_NORMAL
public static final JobStatus END_DELAY
public static final JobStatus START_DELAY
public static final JobStatus NEST_END_DELAY
public static final JobStatus NEST_START_DELAY
public static JobStatus[] values()
for(JobStatus c: JobStatus.values()) System.out.println(c);
public static JobStatus valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合NullPointerException
- 引数がnullの場合public String getCode()
public String getLabel()
public static JobStatus valueOfCode(String code)
code
- コードIllegalArgumentException
- 指定されたコードに該当するインスタンスが存在しない場合Copyright © 2016. All rights reserved.