public static enum Renderer.ReflowPhase extends Enum<Renderer.ReflowPhase>
Enum Constant and Description |
---|
AlignPercentual |
ApplyComputed |
MaxWidth |
MinWidth |
PreferredWidth |
Special |
Stretch |
Modifier and Type | Method and Description |
---|---|
static Renderer.ReflowPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Renderer.ReflowPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Renderer.ReflowPhase MinWidth
public static final Renderer.ReflowPhase MaxWidth
public static final Renderer.ReflowPhase ApplyComputed
public static final Renderer.ReflowPhase PreferredWidth
public static final Renderer.ReflowPhase Special
public static final Renderer.ReflowPhase AlignPercentual
public static final Renderer.ReflowPhase Stretch
public static Renderer.ReflowPhase[] values()
for (Renderer.ReflowPhase c : Renderer.ReflowPhase.values()) System.out.println(c);
public static Renderer.ReflowPhase 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