public enum MeetOrSlice extends Enum<MeetOrSlice>
meetOrSlice attribute.| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
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 static MeetOrSlice[] values()
for (MeetOrSlice c : MeetOrSlice.values()) System.out.println(c);
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 String toString()
toString in class Enum<MeetOrSlice>Copyright © 2016. All rights reserved.