@DataDefinition(description="Used to filter results according to open/closed status. Values can be OPEN, CLOSED or ALL. If absent then ALL is assumed") public enum ParamAccountOpenStatus extends Enum<ParamAccountOpenStatus>
| Modifier and Type | Method and Description |
|---|---|
static ParamAccountOpenStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParamAccountOpenStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParamAccountOpenStatus OPEN
public static final ParamAccountOpenStatus CLOSED
public static final ParamAccountOpenStatus ALL
public static ParamAccountOpenStatus[] values()
for (ParamAccountOpenStatus c : ParamAccountOpenStatus.values()) System.out.println(c);
public static ParamAccountOpenStatus 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.