public enum NumberPointType extends Enum<NumberPointType>
| Enum Constant and Description | 
|---|
| COMMA | 
| DEFAULT | 
| NONE | 
| POINT | 
| WHITESPACE | 
| Modifier and Type | Method and Description | 
|---|---|
| String | getName() | 
| static NumberPointType | match(String name) | 
| String | toString() | 
| static NumberPointType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static NumberPointType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final NumberPointType POINT
public static final NumberPointType COMMA
public static final NumberPointType WHITESPACE
public static final NumberPointType NONE
public static final NumberPointType DEFAULT
public static NumberPointType[] values()
for (NumberPointType c : NumberPointType.values()) System.out.println(c);
public static NumberPointType 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 static NumberPointType match(String name)
public String getName()
public String toString()
toString in class Enum<NumberPointType>Copyright © 2016 The THYMELEAF team. All rights reserved.