public enum MeetOrSlice extends Enum<MeetOrSlice>
meetOrSlice attribute.| Enum Constant and Description |
|---|
MEETValue 'meet'. |
SLICEValue 'slice'. |
| Modifier and Type | Method and Description |
|---|---|
String | toString()Returns the SVG meetOrSlice attribute value as a string. |
static MeetOrSlice | valueOf(String name)Returns the enum constant of this type with the specified name. |
static MeetOrSlice[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. |
public static final MeetOrSlice MEET
public static final MeetOrSlice SLICE
public String toString()
toString in class Enum<MeetOrSlice>public static MeetOrSlice 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 MeetOrSlice[] values()
for (MeetOrSlice c : MeetOrSlice.values()) System.out.println(c);