Package cz.o2.proxima.core.util
Enum CamelCase.Characters
- java.lang.Object
-
- java.lang.Enum<CamelCase.Characters>
-
- cz.o2.proxima.core.util.CamelCase.Characters
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CamelCase.Characters>
- Enclosing class:
- CamelCase
public static enum CamelCase.Characters extends java.lang.Enum<CamelCase.Characters>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SPACE_AND_DASH
SPACE_DASH_AND_UNDERSCORE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CamelCase.Characters
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CamelCase.Characters[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SPACE_AND_DASH
public static final CamelCase.Characters SPACE_AND_DASH
-
SPACE_DASH_AND_UNDERSCORE
public static final CamelCase.Characters SPACE_DASH_AND_UNDERSCORE
-
-
Method Detail
-
values
public static CamelCase.Characters[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CamelCase.Characters c : CamelCase.Characters.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CamelCase.Characters valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-