public enum VersionStrategy extends java.lang.Enum<VersionStrategy>
Enum Constant | Description |
---|---|
DATE_TIME |
|
NONE |
|
STATE_IMAGE |
|
UNSPECIFIED |
|
VERSION_NUMBER |
Modifier and Type | Method | Description |
---|---|---|
static VersionStrategy |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static VersionStrategy[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VersionStrategy UNSPECIFIED
public static final VersionStrategy NONE
public static final VersionStrategy STATE_IMAGE
public static final VersionStrategy DATE_TIME
public static final VersionStrategy VERSION_NUMBER
public static VersionStrategy[] values()
for (VersionStrategy c : VersionStrategy.values()) System.out.println(c);
public static VersionStrategy valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null