public enum PrintOrderEnum extends Enum<PrintOrderEnum> implements JREnum
Enum Constant and Description |
---|
HORIZONTAL
Specifies that columns in a report should be filled horizontally (columns are filled proportionally).
|
VERTICAL
Specifies that columns in a report should be filled vertically (fill an entire column and then go to the
next one).
|
Modifier and Type | Method and Description |
---|---|
static PrintOrderEnum |
getByName(String name) |
static PrintOrderEnum |
getByValue(byte value)
Deprecated.
Used only by deprecated serialized fields.
|
static PrintOrderEnum |
getByValue(Byte value)
Deprecated.
Used only by deprecated serialized fields.
|
String |
getName() |
byte |
getValue()
Deprecated.
Used only by deprecated serialized fields.
|
Byte |
getValueByte()
Deprecated.
Used only by deprecated serialized fields.
|
static PrintOrderEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PrintOrderEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintOrderEnum VERTICAL
public static final PrintOrderEnum HORIZONTAL
public static PrintOrderEnum[] values()
for (PrintOrderEnum c : PrintOrderEnum.values()) System.out.println(c);
public static PrintOrderEnum 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 Byte getValueByte()
getValueByte
in interface JREnum
public final byte getValue()
public static PrintOrderEnum getByName(String name)
public static PrintOrderEnum getByValue(Byte value)
public static PrintOrderEnum getByValue(byte value)
Copyright © 2017. All rights reserved.