public enum FlexJustifyContent extends Enum<FlexJustifyContent> implements IsCssClass
| Enum Constant and Description |
|---|
CENTER
At the center of the layout
|
END
At the end of the layout
|
SPACE_AROUND
Evenly distributed over all the content
|
SPACE_BETWEEN
Evenly distributed over all the content; first item at the start and last item at the end of
the layout
|
SPACE_EVENLY
Evenly distributed over all the content with the same spacing between all items
|
START
At the start of the layout
|
| Modifier and Type | Method and Description |
|---|---|
String |
getStyle() |
static FlexJustifyContent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlexJustifyContent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlexJustifyContent START
public static final FlexJustifyContent END
public static final FlexJustifyContent CENTER
public static final FlexJustifyContent SPACE_BETWEEN
public static final FlexJustifyContent SPACE_AROUND
public static final FlexJustifyContent SPACE_EVENLY
public static FlexJustifyContent[] values()
for (FlexJustifyContent c : FlexJustifyContent.values()) System.out.println(c);
public static FlexJustifyContent 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 nullpublic String getStyle()
getStyle in interface IsCssClassCopyright © 2019–2022 Dominokit. All rights reserved.