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