public enum Linear extends Enum<Linear>
Enum Constant and Description |
---|
INTERNATIONAL_FOOT
an international foot
|
INTERNATIONAL_MILE
an international mile
|
INTERNATIONAL_NAUTICAL_MILE
an international nautical mil
|
KILOMETER
a kilometer
|
METER
a meter
|
US_SURVEY_FOOT
a U.S. survey foot
|
Modifier and Type | Method and Description |
---|---|
PdfName |
getPdfName()
Gets the PdfName.
|
static Linear |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Linear[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final Linear METER
public static final Linear KILOMETER
public static final Linear INTERNATIONAL_FOOT
public static final Linear US_SURVEY_FOOT
public static final Linear INTERNATIONAL_MILE
public static final Linear INTERNATIONAL_NAUTICAL_MILE
public static Linear[] values()
for (Linear c : Linear.values()) System.out.println(c);
public static Linear 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.