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