public static enum EmptyAttributeValue.EmptyType extends Enum<EmptyAttributeValue.EmptyType>
| Enum Constant and Description |
|---|
NULL_VALUE
Value that is the Java null reference.
|
ZERO_LENGTH_VALUE
Value with zero length.
|
| Modifier and Type | Method and Description |
|---|---|
static EmptyAttributeValue.EmptyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmptyAttributeValue.EmptyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmptyAttributeValue.EmptyType NULL_VALUE
public static final EmptyAttributeValue.EmptyType ZERO_LENGTH_VALUE
public static EmptyAttributeValue.EmptyType[] values()
for (EmptyAttributeValue.EmptyType c : EmptyAttributeValue.EmptyType.values()) System.out.println(c);
public static EmptyAttributeValue.EmptyType 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 © 1999–2018 Shibboleth Consortium. All rights reserved.