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