Package de.xima.fc.css.builder
Enum ECssJustifyContent
- java.lang.Object
-
- java.lang.Enum<ECssJustifyContent>
-
- de.xima.fc.css.builder.ECssJustifyContent
-
- All Implemented Interfaces:
CssDefaultValue
,Serializable
,Comparable<ECssJustifyContent>
public enum ECssJustifyContent extends Enum<ECssJustifyContent> implements CssDefaultValue
Constants with the pre-defined values for the CSS propertyjustify-content
.The CSS justify-content property defines how the browser distributes space between and around content items along the main-axis of a flex container, and the inline axis of a grid container.
- Author:
- XIMA MEDIA GmbH
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BASELINE
Aligns the alignment baseline of the box's first baseline set with the corresponding baseline in the shared first baseline set of all the boxes in its baseline-sharing group.CENTER
The items are packed flush to each other toward the center of the alignment container along the main axis.END
The items are packed flush to each other toward the end edge of the alignment container in the main axis.FIRST_BASELINE
Specifies participation in first- or last-baseline alignment: aligns the alignment baseline of the box's first baseline set with the corresponding baseline in the shared first baseline set of all the boxes in its baseline-sharing group.FLEX_END
The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-end side.FLEX_START
The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-start side.LAST_BASELINE
Specifies participation in first- or last-baseline alignment: aligns the alignment baseline of the box's last baseline set with the corresponding baseline in the shared last baseline set of all the boxes in its baseline-sharing group.LEFT
The items are packed flush to each other toward the left edge of the alignment container.NORMAL
The items are packed in their default position as if nojustify-content
value was set.RIGHT
The items are packed flush to each other toward the right edge of the alignment container in the appropriate axis.SAFE
Used alongside an alignment keyword.SPACE_AROUND
The items are evenly distributed within the alignment container along the main axis.SPACE_BETWEEN
The items are evenly distributed within the alignment container along the main axis.SPACE_EVENLY
The items are evenly distributed within the alignment container along the main axis.START
The items are packed flush to each other toward the start edge of the alignment container in the main axis.STRETCH
If the combined size of the items along the main axis is less than the size of the alignment container, any auto-sized items have their size increased equally (not proportionally), while still respecting the constraints imposed by max-height/max-width (or equivalent functionality), so that the combined size exactly fills the alignment container along the main axis.UNSAFE
Used alongside an alignment keyword.
-
Field Summary
-
Fields inherited from interface de.xima.fc.css.builder.CssDefaultValue
INHERIT, INITIAL, REVERT, REVERT_LAYER, UNSET
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
toString()
String
value()
static ECssJustifyContent
valueOf(String name)
Returns the enum constant of this type with the specified name.static ECssJustifyContent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BASELINE
public static final ECssJustifyContent BASELINE
Aligns the alignment baseline of the box's first baseline set with the corresponding baseline in the shared first baseline set of all the boxes in its baseline-sharing group. The fallback alignment forfirst baseline
isstart
.
-
CENTER
public static final ECssJustifyContent CENTER
The items are packed flush to each other toward the center of the alignment container along the main axis.
-
END
public static final ECssJustifyContent END
The items are packed flush to each other toward the end edge of the alignment container in the main axis.
-
FIRST_BASELINE
public static final ECssJustifyContent FIRST_BASELINE
Specifies participation in first- or last-baseline alignment: aligns the alignment baseline of the box's first baseline set with the corresponding baseline in the shared first baseline set of all the boxes in its baseline-sharing group. The fallback alignment forfirst baseline
isstart
.
-
FLEX_END
public static final ECssJustifyContent FLEX_END
The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-end side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated likeend
.
-
FLEX_START
public static final ECssJustifyContent FLEX_START
The items are packed flush to each other toward the edge of the alignment container depending on the flex container's main-start side. This only applies to flex layout items. For items that are not children of a flex container, this value is treated likestart
.
-
LAST_BASELINE
public static final ECssJustifyContent LAST_BASELINE
Specifies participation in first- or last-baseline alignment: aligns the alignment baseline of the box's last baseline set with the corresponding baseline in the shared last baseline set of all the boxes in its baseline-sharing group. The fallback alignment forlast baseline
isend
.
-
LEFT
public static final ECssJustifyContent LEFT
The items are packed flush to each other toward the left edge of the alignment container. If the property's axis is not parallel with the inline axis, this value behaves likestart
.
-
NORMAL
public static final ECssJustifyContent NORMAL
The items are packed in their default position as if nojustify-content
value was set. This value behaves asstretch
in grid and flex containers.
-
RIGHT
public static final ECssJustifyContent RIGHT
The items are packed flush to each other toward the right edge of the alignment container in the appropriate axis. If the property's axis is not parallel with the inline axis, this value behaves likestart
.
-
SAFE
public static final ECssJustifyContent SAFE
Used alongside an alignment keyword. If the chosen keyword means that the item overflows the alignment container causing data loss, the item is instead aligned as if the alignment mode were start.
-
SPACE_AROUND
public static final ECssJustifyContent SPACE_AROUND
The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The empty space before the first and after the last item equals half of the space between each pair of adjacent items.
-
SPACE_BETWEEN
public static final ECssJustifyContent SPACE_BETWEEN
The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items is the same. The first item is flush with the main-start edge, and the last item is flush with the main-end edge.
-
SPACE_EVENLY
public static final ECssJustifyContent SPACE_EVENLY
The items are evenly distributed within the alignment container along the main axis. The spacing between each pair of adjacent items, the main-start edge and the first item, and the main-end edge and the last item, are all exactly the same.
-
START
public static final ECssJustifyContent START
The items are packed flush to each other toward the start edge of the alignment container in the main axis.
-
STRETCH
public static final ECssJustifyContent STRETCH
If the combined size of the items along the main axis is less than the size of the alignment container, any auto-sized items have their size increased equally (not proportionally), while still respecting the constraints imposed by max-height/max-width (or equivalent functionality), so that the combined size exactly fills the alignment container along the main axis.
-
UNSAFE
public static final ECssJustifyContent UNSAFE
Used alongside an alignment keyword. Regardless of the relative sizes of the item and alignment container, and regardless of whether overflow which causes data loss might happen, the given alignment value is honored.
-
-
Method Detail
-
values
public static ECssJustifyContent[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ECssJustifyContent c : ECssJustifyContent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ECssJustifyContent valueOf(String name)
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.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
public String toString()
- Overrides:
toString
in classEnum<ECssJustifyContent>
-
value
public String value()
- Returns:
- The string value of this property that can be used when creating CSS strings.
-
-