FlexLayout.FlexWrap
instead
Possible values for the flex-wrap
CSS property, which determines how the elements inside the layout
should behave when they don't fit inside the layout.@Deprecated public static enum FlexLayout.WrapMode extends Enum<FlexLayout.WrapMode>
Enum Constant and Description |
---|
NOWRAP
Deprecated.
If the items use up too much space they will overflow.
|
WRAP
Deprecated.
If items are not able to fit into a single row they are allowed to wrap into a follow up line.
|
WRAP_REVERSE
Deprecated.
If items are not able to fit into a single row they are allowed to wrap into a follow up line.
|
Modifier and Type | Method and Description |
---|---|
static FlexLayout.WrapMode |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static FlexLayout.WrapMode[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FlexLayout.WrapMode NOWRAP
public static final FlexLayout.WrapMode WRAP
public static final FlexLayout.WrapMode WRAP_REVERSE
public static FlexLayout.WrapMode[] values()
for (FlexLayout.WrapMode c : FlexLayout.WrapMode.values()) System.out.println(c);
public static FlexLayout.WrapMode 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 nullCopyright © 2020. All rights reserved.