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