public enum Angular extends Enum<Angular>
Enum Constant and Description |
---|
DEGREE
a degree
|
GRAD
a grad (1/400 of a circle, or 0.9 degrees)
|
Modifier and Type | Method and Description |
---|---|
PdfName |
getPdfName()
Gets the PdfName.
|
static Angular |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Angular[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Angular DEGREE
public static final Angular GRAD
public static Angular[] values()
for (Angular c : Angular.values()) System.out.println(c);
public static Angular 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
public PdfName getPdfName()
Copyright © 2016. All rights reserved.