edu.iu.cnets.klatsch.feed
Enum Buzz.Query
java.lang.Object
java.lang.Enum<Buzz.Query>
edu.iu.cnets.klatsch.feed.Buzz.Query
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<Buzz.Query>
- Enclosing class:
- Buzz
static enum Buzz.Query
- extends java.lang.Enum<Buzz.Query>
enumeration for our prepared statements
Method Summary |
static Buzz.Query |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Buzz.Query[] |
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, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
ACTOR_ID
public static final Buzz.Query ACTOR_ID
ACTOR_LABEL
public static final Buzz.Query ACTOR_LABEL
EVENTS_BY_ACTOR
public static final Buzz.Query EVENTS_BY_ACTOR
EVENTS_BY_ACTOR_DATE
public static final Buzz.Query EVENTS_BY_ACTOR_DATE
EVENTS_BY_MEME
public static final Buzz.Query EVENTS_BY_MEME
EVENTS_BY_MEME_DATE
public static final Buzz.Query EVENTS_BY_MEME_DATE
EVENTS_BY_DATE
public static final Buzz.Query EVENTS_BY_DATE
MEME_ID
public static final Buzz.Query MEME_ID
MEME_LABEL
public static final Buzz.Query MEME_LABEL
MEME_LINKS
public static final Buzz.Query MEME_LINKS
values
public static Buzz.Query[] 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 (Buzz.Query c : Buzz.Query.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Buzz.Query 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