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