Package net.sf.jasperreports.engine.type
Enum VerticalAlignEnum
- java.lang.Object
-
- java.lang.Enum<VerticalAlignEnum>
-
- net.sf.jasperreports.engine.type.VerticalAlignEnum
-
- All Implemented Interfaces:
Serializable,Comparable<VerticalAlignEnum>,JREnum,NamedEnum
public enum VerticalAlignEnum extends Enum<VerticalAlignEnum> implements JREnum
Deprecated.Replaced byVerticalTextAlignEnumandVerticalImageAlignEnum.- Author:
- Teodor Danciu (teodord@users.sourceforge.net)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static VerticalAlignEnumgetByName(String name)Deprecated.static VerticalAlignEnumgetByValue(byte value)Deprecated.static VerticalAlignEnumgetByValue(Byte value)Deprecated.StringgetName()Deprecated.bytegetValue()Deprecated.BytegetValueByte()Deprecated.static VerticalAlignEnumgetVerticalAlignEnum(VerticalImageAlignEnum verticalImageAlign)Deprecated.static VerticalAlignEnumgetVerticalAlignEnum(VerticalTextAlignEnum verticalTextAlign)Deprecated.static VerticalImageAlignEnumgetVerticalImageAlignEnum(VerticalAlignEnum verticalAlignment)Deprecated.static VerticalTextAlignEnumgetVerticalTextAlignEnum(VerticalAlignEnum verticalAlignment)Deprecated.static VerticalAlignEnumvalueOf(String name)Deprecated.Returns the enum constant of this type with the specified name.static VerticalAlignEnum[]values()Deprecated.Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TOP
public static final VerticalAlignEnum TOP
Deprecated.
-
MIDDLE
public static final VerticalAlignEnum MIDDLE
Deprecated.
-
BOTTOM
public static final VerticalAlignEnum BOTTOM
Deprecated.
-
JUSTIFIED
public static final VerticalAlignEnum JUSTIFIED
Deprecated.
-
-
Method Detail
-
values
public static VerticalAlignEnum[] values()
Deprecated.Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (VerticalAlignEnum c : VerticalAlignEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static VerticalAlignEnum valueOf(String name)
Deprecated.Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValueByte
public Byte getValueByte()
Deprecated.- Specified by:
getValueBytein interfaceJREnum
-
getByName
public static VerticalAlignEnum getByName(String name)
Deprecated.
-
getByValue
public static VerticalAlignEnum getByValue(Byte value)
Deprecated.
-
getByValue
public static VerticalAlignEnum getByValue(byte value)
Deprecated.
-
getVerticalTextAlignEnum
public static VerticalTextAlignEnum getVerticalTextAlignEnum(VerticalAlignEnum verticalAlignment)
Deprecated.
-
getVerticalImageAlignEnum
public static VerticalImageAlignEnum getVerticalImageAlignEnum(VerticalAlignEnum verticalAlignment)
Deprecated.
-
getVerticalAlignEnum
public static VerticalAlignEnum getVerticalAlignEnum(VerticalTextAlignEnum verticalTextAlign)
Deprecated.
-
getVerticalAlignEnum
public static VerticalAlignEnum getVerticalAlignEnum(VerticalImageAlignEnum verticalImageAlign)
Deprecated.
-
-