public enum FillRule extends Enum<FillRule> implements Enumeration
Modifier and Type | Method and Description |
---|---|
static FillRule |
fromString(String value) |
String |
getValue() |
String |
toString() |
static FillRule |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FillRule[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FillRule EVENODD
public static final FillRule NONZERO
private final String value
public static FillRule[] values()
for (FillRule c : FillRule.values()) System.out.println(c);
public static FillRule 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 nullpublic static FillRule fromString(String value) throws EnumerationException
EnumerationException
public String getValue()
Copyright © 2016 Open Microscopy Environment