Package com.adyen.model.nexo
Enum CharacterHeightType
- java.lang.Object
-
- java.lang.Enum<CharacterHeightType>
-
- com.adyen.model.nexo.CharacterHeightType
-
- All Implemented Interfaces:
Serializable,Comparable<CharacterHeightType>
public enum CharacterHeightType extends Enum<CharacterHeightType>
Java class for CharacterHeightType.The following schema fragment specifies the expected content contained within this class.
<simpleType name="CharacterHeightType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="SingleHeight"/> <enumeration value="DoubleHeight"/> <enumeration value="HalfHeight"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DOUBLE_HEIGHTDouble height character height type.HALF_HEIGHTHalf height character height type.SINGLE_HEIGHTSingle height character height type.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CharacterHeightTypefromValue(String v)Returns the enum constant matching the given string, ornullif no match is found.Stringvalue()Value string.static CharacterHeightTypevalueOf(String name)Returns the enum constant of this type with the specified name.static CharacterHeightType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SINGLE_HEIGHT
@SerializedName("SingleHeight") public static final CharacterHeightType SINGLE_HEIGHTSingle height character height type.
-
DOUBLE_HEIGHT
@SerializedName("DoubleHeight") public static final CharacterHeightType DOUBLE_HEIGHTDouble height character height type.
-
HALF_HEIGHT
@SerializedName("HalfHeight") public static final CharacterHeightType HALF_HEIGHTHalf height character height type.
-
-
Method Detail
-
values
public static CharacterHeightType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CharacterHeightType c : CharacterHeightType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CharacterHeightType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
value
public String value()
Value string.- Returns:
- the string
-
fromValue
public static CharacterHeightType fromValue(String v)
Returns the enum constant matching the given string, ornullif no match is found.- Parameters:
v- string value- Returns:
- the CharacterHeightType, or
nullif no match is found.
-
-