public enum AliasType extends Enum<AliasType>
Enum Constant and Description |
---|
HAS_ALIASES
This child has aliases
|
IS_ALIAS
This is an alias
|
NORMAL
A normal child, no aliasing
|
Modifier and Type | Method and Description |
---|---|
static AliasType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AliasType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AliasType NORMAL
public static final AliasType HAS_ALIASES
public static final AliasType IS_ALIAS
public static AliasType[] values()
for (AliasType c : AliasType.values()) System.out.println(c);
public static AliasType 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 © 2009–2023 Oracle Corporation. All rights reserved.