public enum PremiumAdjustmentType extends Enum<PremiumAdjustmentType>
Java class for PremiumAdjustmentType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="PremiumAdjustmentType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="PERCENTAGE"/>
<enumeration value="ABSOLUTE_VALUE"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ABSOLUTE_VALUE
The adjustment size to the base rate is an absolute value.
|
PERCENTAGE
The adjustment size to the base rate is a percentage.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API
version.
|
| Modifier and Type | Method and Description |
|---|---|
static PremiumAdjustmentType |
fromValue(String v) |
String |
value() |
static PremiumAdjustmentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PremiumAdjustmentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PremiumAdjustmentType PERCENTAGE
public static final PremiumAdjustmentType ABSOLUTE_VALUE
public static final PremiumAdjustmentType UNKNOWN
public static PremiumAdjustmentType[] values()
for (PremiumAdjustmentType c : PremiumAdjustmentType.values()) System.out.println(c);
public static PremiumAdjustmentType 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 nullpublic String value()
public static PremiumAdjustmentType fromValue(String v)
Copyright © 2018. All Rights Reserved.