public static enum HumanComparator.CharType extends java.lang.Enum<HumanComparator.CharType>
| Enum Constant and Description |
|---|
TYPE_DIGIT |
TYPE_LETTER |
TYPE_OTHER |
| Modifier and Type | Method and Description |
|---|---|
static HumanComparator.CharType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HumanComparator.CharType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HumanComparator.CharType TYPE_OTHER
public static final HumanComparator.CharType TYPE_DIGIT
public static final HumanComparator.CharType TYPE_LETTER
public static HumanComparator.CharType[] values()
for (HumanComparator.CharType c : HumanComparator.CharType.values()) System.out.println(c);
public static HumanComparator.CharType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright (c) 2001-2022 The Apache Software Foundation. All rights reserved.