public enum FilterCoordinateSystem extends Enum<FilterCoordinateSystem>
"Defines the coordinate system for attributes x, y, width, height."
Enum Constant and Description |
---|
objectBoundingBox |
userSpaceOnUse |
Modifier and Type | Method and Description |
---|---|
static FilterCoordinateSystem |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterCoordinateSystem[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterCoordinateSystem userSpaceOnUse
public static final FilterCoordinateSystem objectBoundingBox
public static FilterCoordinateSystem[] values()
for (FilterCoordinateSystem c : FilterCoordinateSystem.values()) System.out.println(c);
public static FilterCoordinateSystem valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null