StringCaseType enum
Enum for different string case types.
- Inheritance
- Available extensions
Values
- LOWER_SNAKE_CASE → const StringCaseType
-
const StringCaseType(_LOWER_SNAKE_CASE)
- UPPER_SNAKE_CASE → const StringCaseType
-
const StringCaseType(_UPPER_SNAKE_CASE)
- LOWER_KEBAB_CASE → const StringCaseType
-
const StringCaseType(_LOWER_KEBAB_CASE)
- UPPER_KEBAB_CASE → const StringCaseType
-
const StringCaseType(_UPPER_KEBAB_CASE)
- CAPITALIZED_KEBAB_CASE → const StringCaseType
-
const StringCaseType(_CAPITALIZED_KEBAB_CASE)
- CAMEL_CASE → const StringCaseType
-
const StringCaseType(_CAMEL_CASE)
- PASCAL_CASE → const StringCaseType
-
const StringCaseType(_PASCAL_CASE)
- LOWER_DOT_CASE → const StringCaseType
-
const StringCaseType(_LOWER_DOT_CASE)
- UPPER_DOT_CASE → const StringCaseType
-
const StringCaseType(_UPPER_DOT_CASE)
- PATH_CASE → const StringCaseType
-
const StringCaseType(_PATH_CASE)
Properties
- code → String
-
final
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
convert(
String value) → String -
Available on StringCaseType, provided by the ConvertOnStringCaseTypeX extension
Convertsvalue
to a specific case type. -
convertAll(
Iterable< String> values) → Iterable<String> -
Available on StringCaseType, provided by the ConvertOnStringCaseTypeX extension
Convertsvalues
to a specific case type. -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
StringCaseType> - A constant List of the values in this enum, in order of their declaration.