public enum CISRateEnum extends Enum<CISRateEnum>
Java class for CISRateEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CISRateEnum">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="CIS gross rate (0%)"/>
<enumeration value="CIS standard rate (20%)"/>
<enumeration value="CIS higher rate (30%)"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CIS_GROSS_RATE_0 |
CIS_HIGHER_RATE_30 |
CIS_STANDARD_RATE_20 |
| Modifier and Type | Method and Description |
|---|---|
static CISRateEnum |
fromValue(String v) |
String |
value() |
static CISRateEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CISRateEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CISRateEnum CIS_GROSS_RATE_0
public static final CISRateEnum CIS_STANDARD_RATE_20
public static final CISRateEnum CIS_HIGHER_RATE_30
public static CISRateEnum[] values()
for (CISRateEnum c : CISRateEnum.values()) System.out.println(c);
public static CISRateEnum 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 CISRateEnum fromValue(String v)
Copyright © 2019. All Rights Reserved.