public enum BorderSplitType extends Enum<BorderSplitType> implements NamedEnum
JRFrame.getBorderSplitType()
Enum Constant and Description |
---|
DRAW_BORDERS
When the frame splits, both fragments are drawn with borders on all sides.
|
NO_BORDERS
When the frame splits, the bottom border of the first fragment and the top border of the second fragment are not drawn.
|
Modifier and Type | Method and Description |
---|---|
static BorderSplitType |
byName(String name) |
String |
getName() |
static BorderSplitType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BorderSplitType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderSplitType NO_BORDERS
public static final BorderSplitType DRAW_BORDERS
public static BorderSplitType[] values()
for (BorderSplitType c : BorderSplitType.values()) System.out.println(c);
public static BorderSplitType 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 nullpublic static BorderSplitType byName(String name)
Copyright © 2016. All rights reserved.