Enum Class PictureInterfaceVariant
- All Implemented Interfaces:
Serializable
,Comparable<PictureInterfaceVariant>
,Constable
Platform picture interface variants enumeration
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescription -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic PictureInterfaceVariant
getByLiteralName
(String literalName) Get enumeration value by given literal namestatic PictureInterfaceVariant
Get enumeration value by given nameReturns enum full literal name.getName()
Returns enum name.Returns enum sort literal name.static PictureInterfaceVariant
Returns the enum constant of this class with the specified name.static PictureInterfaceVariant[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
TAXI
-
TAXI_MOBILE
-
TAXI_COMPACT
-
VERSION_8_2_ORDINARY_APP
-
VERSION_8_2
-
VERSION_8_0
-
-
Field Details
-
PICTURE_INTERFACE_VARIANT_ANY_LITERAL
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-
getByName
Get enumeration value by given name- Parameters:
name
- the name of searching enumeration value, can benull
- Returns:
- enumeration value by given name, or
null
if no value found
-
getByLiteralName
Get enumeration value by given literal name- Parameters:
name
- the literal name of searching enumeration value, can benull
- Returns:
- enumeration value by given literal name, or
null
if no value found
-
getName
Returns enum name.- Returns:
- the
String
name, nevernull
-
getLiteralName
Returns enum full literal name.- Returns:
- the
String
full name, nevernull
-
getShortLiteralName
Returns enum sort literal name.- Returns:
- the
String
sort literal name, nevernull
-