Enum SymbolWeight
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
@Serializable() public enum SymbolWeight extends Enum<SymbolWeight>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classSymbolWeight.Companion
-
Field Summary
Fields Modifier and Type Field Description private final Integervalueprivate final Stringnameprivate final Integerordinalprivate final EnumEntries<SymbolWeight>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description W100weight = 100 - Thinnest stroke weight
W200weight = 200 - Extra light stroke weight
W300weight = 300 - Light stroke weight
W400weight = 400 - Regular/Normal stroke weight (default)
W500weight = 500 - Medium stroke weight
W600weight = 600 - Semi-bold stroke weight
W700weight = 700 - Bold stroke weight
-
Method Summary
Modifier and Type Method Description StringtoString()final SymbolWeightvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<SymbolWeight>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetValue()final EnumEntries<SymbolWeight>getEntries()-
-
Method Detail
-
valueOf
final SymbolWeight 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<SymbolWeight> 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<SymbolWeight> getEntries()
-
-
-
-