net.sf.f8api.model
Enum EventRsvpStatus
java.lang.Object
java.lang.Enum<EventRsvpStatus>
net.sf.f8api.model.EventRsvpStatus
- All Implemented Interfaces:
- java.io.Serializable, java.lang.CharSequence, java.lang.Comparable<EventRsvpStatus>
public enum EventRsvpStatus
- extends java.lang.Enum<EventRsvpStatus>
- implements java.lang.CharSequence
- Author:
- Jason Thrasher
- See Also:
- facebook.events.get
Method Summary |
char |
charAt(int index)
|
int |
length()
|
java.lang.CharSequence |
subSequence(int start,
int end)
|
java.lang.String |
toString()
|
static EventRsvpStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EventRsvpStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ATTENDING
public static final EventRsvpStatus ATTENDING
UNSURE
public static final EventRsvpStatus UNSURE
DECLINED
public static final EventRsvpStatus DECLINED
NOT_REPLIED
public static final EventRsvpStatus NOT_REPLIED
values
public static EventRsvpStatus[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (EventRsvpStatus c : EventRsvpStatus.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static EventRsvpStatus valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
charAt
public char charAt(int index)
- Specified by:
charAt
in interface java.lang.CharSequence
length
public int length()
- Specified by:
length
in interface java.lang.CharSequence
subSequence
public java.lang.CharSequence subSequence(int start,
int end)
- Specified by:
subSequence
in interface java.lang.CharSequence
toString
public java.lang.String toString()
- Specified by:
toString
in interface java.lang.CharSequence
- Overrides:
toString
in class java.lang.Enum<EventRsvpStatus>
Copyright © 2007 Jason Thrasher. All Rights Reserved.