public enum JobLogEntryType extends Enum<JobLogEntryType>
| Enum Constant and Description |
|---|
any |
batch |
fatal |
info |
other |
reject |
reset |
started |
warning |
| Modifier and Type | Method and Description |
|---|---|
static JobLogEntryType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobLogEntryType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobLogEntryType any
public static final JobLogEntryType batch
public static final JobLogEntryType fatal
public static final JobLogEntryType info
public static final JobLogEntryType other
public static final JobLogEntryType reject
public static final JobLogEntryType reset
public static final JobLogEntryType started
public static final JobLogEntryType warning
public static JobLogEntryType[] values()
for (JobLogEntryType c : JobLogEntryType.values()) System.out.println(c);
public static JobLogEntryType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018–2019 ODPi. All rights reserved.