public static enum Style.GridTrackSizeType extends Enum<Style.GridTrackSizeType>
Enum Constant and Description |
---|
FitContentTrackSizing |
LengthTrackSizing |
MinMaxTrackSizing |
Modifier and Type | Method and Description |
---|---|
static Style.GridTrackSizeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style.GridTrackSizeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style.GridTrackSizeType LengthTrackSizing
public static final Style.GridTrackSizeType MinMaxTrackSizing
public static final Style.GridTrackSizeType FitContentTrackSizing
public static Style.GridTrackSizeType[] values()
for (Style.GridTrackSizeType c : Style.GridTrackSizeType.values()) System.out.println(c);
public static Style.GridTrackSizeType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullRevision 4.0.15 / 20220727-0149