public enum TFNExemptionType extends Enum<TFNExemptionType>
| Enum Constant and Description |
|---|
NOTQUOTED |
PENDING |
PENSIONER |
UNDER18 |
| Modifier and Type | Method and Description |
|---|---|
static TFNExemptionType |
fromValue(String value) |
String |
getValue() |
String |
toString() |
static TFNExemptionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TFNExemptionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TFNExemptionType NOTQUOTED
public static final TFNExemptionType PENDING
public static final TFNExemptionType PENSIONER
public static final TFNExemptionType UNDER18
public static TFNExemptionType[] values()
for (TFNExemptionType c : TFNExemptionType.values()) System.out.println(c);
public static TFNExemptionType 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 getValue()
public String toString()
toString in class Enum<TFNExemptionType>public static TFNExemptionType fromValue(String value)
Copyright © 2020. All rights reserved.