public enum NonDisclosedIndicator extends Enum<NonDisclosedIndicator>
| Enum Constant and Description |
|---|
Disclosed
Disclosed
|
NonDisclosed
Non-Disclosed
|
None
Default value.
|
| Modifier and Type | Method and Description |
|---|---|
static NonDisclosedIndicator |
forValue(char value)
Returns enum value for the char representation
|
char |
getValue()
Gets current value.
|
static NonDisclosedIndicator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NonDisclosedIndicator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NonDisclosedIndicator None
public static final NonDisclosedIndicator NonDisclosed
public static final NonDisclosedIndicator Disclosed
public static NonDisclosedIndicator[] values()
for (NonDisclosedIndicator c : NonDisclosedIndicator.values()) System.out.println(c);
public static NonDisclosedIndicator 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 char getValue()
public static NonDisclosedIndicator forValue(char value)
value - valueCopyright © 2014–2025 Onix Solutions. All rights reserved.