public enum OverflowWrapPropertyValue extends Enum<OverflowWrapPropertyValue>
ANYWHERE and BREAK_WORD mean that long words will break if they overflow the container.
NORMAL means that long words will not break, even if they overflow the container.
| Enum Constant and Description |
|---|
ANYWHERE |
BREAK_WORD |
NORMAL |
| Modifier and Type | Method and Description |
|---|---|
static OverflowWrapPropertyValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OverflowWrapPropertyValue[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final OverflowWrapPropertyValue ANYWHERE
public static final OverflowWrapPropertyValue BREAK_WORD
public static final OverflowWrapPropertyValue NORMAL
public static OverflowWrapPropertyValue[] values()
for (OverflowWrapPropertyValue c : OverflowWrapPropertyValue.values()) System.out.println(c);
public static OverflowWrapPropertyValue 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–2022 iText Group NV. All rights reserved.