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