public static enum ConfigNameRelation.Relation extends Enum<ConfigNameRelation.Relation>
| Enum Constant and Description |
|---|
EQUAL |
IS_PREFIX_OF |
IS_STRICT_PREFIX_OF |
| Modifier and Type | Method and Description |
|---|---|
static ConfigNameRelation.Relation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ConfigNameRelation.Relation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ConfigNameRelation.Relation EQUAL
public static final ConfigNameRelation.Relation IS_PREFIX_OF
public static final ConfigNameRelation.Relation IS_STRICT_PREFIX_OF
public static ConfigNameRelation.Relation[] values()
for (ConfigNameRelation.Relation c : ConfigNameRelation.Relation.values()) System.out.println(c);
public static ConfigNameRelation.Relation 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 © 2019. All rights reserved.