public enum CodingStrength extends Enum<CodingStrength>
| Enum Constant and Description |
|---|
CNE
If not null, the element must be coded and must be drawn from the value set specified in the binding
|
CWE
If not null, the element must be coded if there is an appropriate value in the value set specified in the binding.
|
| Modifier and Type | Method and Description |
|---|---|
static CodingStrength |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CodingStrength[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CodingStrength CNE
public static final CodingStrength CWE
public static CodingStrength[] values()
for (CodingStrength c : CodingStrength.values()) System.out.println(c);
public static CodingStrength 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 © 2015. All rights reserved.