Enum NamingConvention
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum NamingConvention extends Enum<NamingConvention>
Naming conventions for icon class names.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<NamingConvention>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description PASCAL_CASEPascalCase: home-icon → HomeIcon
CAMEL_CASEcamelCase: home-icon → homeIcon
SNAKE_CASEsnake_case: home-icon → home_icon
SCREAMING_SNAKESCREAMING_SNAKE_CASE: home-icon → HOME_ICON
KEBAB_CASEkebab-case: home_icon → home-icon
LOWER_CASElowercase: HomeIcon → homeicon
UPPER_CASEUPPERCASE: HomeIcon → HOMEICON
-
Method Summary
Modifier and Type Method Description final NamingConventionvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<NamingConvention>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<NamingConvention>getEntries()Naming conventions for icon class names. -
-
Method Detail
-
valueOf
final NamingConvention valueOf(String value)
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.)
-
values
final Array<NamingConvention> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<NamingConvention> getEntries()
Naming conventions for icon class names.
-
-
-
-