public enum ExtendedBoolean extends Enum<ExtendedBoolean>
Enum Constant and Description |
---|
False
False value of ExtendnedBoolean.
|
True
True value of ExtendnedBoolean.
|
Undefined
Undefined value of ExtendnedBoolean.
|
Modifier and Type | Method and Description |
---|---|
static ExtendedBoolean |
getByValue(int value) |
int |
getValue() |
static ExtendedBoolean |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExtendedBoolean[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtendedBoolean Undefined
Undefined value of ExtendnedBoolean.
public static final ExtendedBoolean False
False value of ExtendnedBoolean.
public static final ExtendedBoolean True
True value of ExtendnedBoolean.
public static ExtendedBoolean[] values()
for (ExtendedBoolean c : ExtendedBoolean.values()) System.out.println(c);
public static ExtendedBoolean 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 int getValue()
public static ExtendedBoolean getByValue(int value)
Copyright © 2025 Aspose. All Rights Reserved.