public enum DxfVerticalJustification extends java.lang.Enum<DxfVerticalJustification>
This appears as group code 72 in TEXT, ATTRIB, and other entities.
Copyright 2006 Partner Software, Inc.
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
java.lang.String |
getName() |
java.lang.String |
toString() |
static DxfVerticalJustification |
valueForCode(int code) |
static DxfVerticalJustification |
valueNamed(java.lang.String name) |
static DxfVerticalJustification |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DxfVerticalJustification[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DxfVerticalJustification BASELINE
public static final DxfVerticalJustification BOTTOM
public static final DxfVerticalJustification MIDDLE
public static final DxfVerticalJustification TOP
public static DxfVerticalJustification[] values()
for (DxfVerticalJustification c : DxfVerticalJustification.values()) System.out.println(c);
public static DxfVerticalJustification valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<DxfVerticalJustification>public java.lang.String getName()
public int getCode()
public static DxfVerticalJustification valueNamed(java.lang.String name)
public static DxfVerticalJustification valueForCode(int code)