public enum JustifyContent extends Enum<JustifyContent>
Property.JUSTIFY_CONTENT
.
Enum Constant and Description |
---|
CENTER |
END |
FLEX_END |
FLEX_START |
LEFT |
NORMAL |
RIGHT |
SELF_END |
SELF_START |
START |
STRETCH |
Modifier and Type | Method and Description |
---|---|
static JustifyContent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JustifyContent[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final JustifyContent CENTER
public static final JustifyContent START
public static final JustifyContent END
public static final JustifyContent SELF_START
public static final JustifyContent SELF_END
public static final JustifyContent FLEX_START
public static final JustifyContent FLEX_END
public static final JustifyContent LEFT
public static final JustifyContent RIGHT
public static final JustifyContent NORMAL
public static final JustifyContent STRETCH
public static JustifyContent[] values()
for (JustifyContent c : JustifyContent.values()) System.out.println(c);
public static JustifyContent valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null
Copyright © 1998–2023 iText Group NV. All rights reserved.