public enum VersionStrategy extends Enum<VersionStrategy>
Enum Constant and Description |
---|
DATE_TIME |
NONE |
STATE_IMAGE |
UNSPECIFIED |
VERSION_NUMBER |
Modifier and Type | Method and Description |
---|---|
static VersionStrategy |
valueOf(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(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 © 2005–1970 Apache Software Foundation. All rights reserved.