MustacheTag enum
the formats that Mustache supports
- Inheritance
- Available extensions
Values
- camelCase → const MustacheTag
-
camelCase
- constantCase → const MustacheTag
-
CONSTANT_CASE
- dotCase → const MustacheTag
-
dot.case
- headerCase → const MustacheTag
-
HeaderCase
- lowerCase → const MustacheTag
-
lowercase
- mustacheCase → const MustacheTag
-
{{ mustache }}
- pascalCase → const MustacheTag
-
Pascal Case
- paramCase → const MustacheTag
-
paramCase
- pathCase → const MustacheTag
-
path_case
- sentenceCase → const MustacheTag
-
Sentence Case
- snakeCase → const MustacheTag
-
snake_case
- titleCase → const MustacheTag
-
Title Case
- upperCase → const MustacheTag
-
UPPERCASE
- ifNot → const MustacheTag
-
no format, start of an inverted inline section
- if_ → const MustacheTag
-
no format, start of an inline section
- endIf → const MustacheTag
-
no format, end of an inline section
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- isCamelCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.camelCaseno setter - isConstantCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.constantCaseno setter - isDotCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.dotCaseno setter - isEndIf → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the format is MustacheTag.endIfno setter - isFormat → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is a format typeno setter - isHeaderCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.headerCaseno setter - isIf → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the format is MustacheTag.if_no setter - isIfNot → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the format is MustacheTag.ifNotno setter - isLowerCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.lowerCaseno setter - isMustacheCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.mustacheCaseno setter - isParamCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.paramCaseno setter - isPascalCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.pascalCaseno setter - isPathCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.pathCaseno setter - isSentenceCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.sentenceCaseno setter - isSnakeCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.snakeCaseno setter - isTitleCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.titleCaseno setter - isUpperCase → bool
-
Available on MustacheTag, provided by the MustacheTagX extension
whether the value is MustacheTag.upperCaseno setter - 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
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
wrap(
String content, {int? braceCount, String? startDeliminator, String? endDeliminator}) → String -
Available on MustacheTag, provided by the MustacheTagX extension
Wraps thecontent
with mustache
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
MustacheTag> - A constant List of the values in this enum, in order of their declaration.