public enum ModeOfLoading extends Enum<ModeOfLoading>
| Modifier and Type | Method and Description |
|---|---|
static ModeOfLoading |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModeOfLoading[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModeOfLoading ONE_PASS
public static final ModeOfLoading TWO_PASS
public static ModeOfLoading[] values()
for (ModeOfLoading c : ModeOfLoading.values()) System.out.println(c);
public static ModeOfLoading 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 DataWeb Research. All rights reserved.