- java.lang.Object
-
- java.lang.Enum<PreserveAspectRatio>
-
- org.jfree.svg.PreserveAspectRatio
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PreserveAspectRatio>
public enum PreserveAspectRatio extends java.lang.Enum<PreserveAspectRatio>
An enumeration of the values for thepreserveAspectRatio
attribute.- Since:
- 3.2
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONE
Value 'none'.XMAX_YMAX
Value 'xMaxYMax'.XMAX_YMID
Value 'xMaxYMid'.XMAX_YMIN
Value 'xMaxYMin'.XMID_YMAX
Value 'xMidYMax'.XMID_YMID
Value 'xMidYMid'.XMID_YMIN
Value 'xMidYMin'.XMIN_YMAX
Value 'xMinYMax'.XMIN_YMID
Value 'xMinYMid'.XMIN_YMIN
Value 'xMinYMin'.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static PreserveAspectRatio
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PreserveAspectRatio[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final PreserveAspectRatio NONE
Value 'none'.
-
XMIN_YMIN
public static final PreserveAspectRatio XMIN_YMIN
Value 'xMinYMin'.
-
XMIN_YMID
public static final PreserveAspectRatio XMIN_YMID
Value 'xMinYMid'.
-
XMIN_YMAX
public static final PreserveAspectRatio XMIN_YMAX
Value 'xMinYMax'.
-
XMID_YMIN
public static final PreserveAspectRatio XMID_YMIN
Value 'xMidYMin'.
-
XMID_YMID
public static final PreserveAspectRatio XMID_YMID
Value 'xMidYMid'.
-
XMID_YMAX
public static final PreserveAspectRatio XMID_YMAX
Value 'xMidYMax'.
-
XMAX_YMIN
public static final PreserveAspectRatio XMAX_YMIN
Value 'xMaxYMin'.
-
XMAX_YMID
public static final PreserveAspectRatio XMAX_YMID
Value 'xMaxYMid'.
-
XMAX_YMAX
public static final PreserveAspectRatio XMAX_YMAX
Value 'xMaxYMax'.
-
-
Method Detail
-
values
public static PreserveAspectRatio[] values()
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 (PreserveAspectRatio c : PreserveAspectRatio.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PreserveAspectRatio valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<PreserveAspectRatio>
-
-