Package net.worcade.client.query
Enum ConversationField
- java.lang.Object
-
- java.lang.Enum<ConversationField>
-
- net.worcade.client.query.ConversationField
-
- All Implemented Interfaces:
Serializable,Comparable<ConversationField>,EntityField
public enum ConversationField extends Enum<ConversationField> implements EntityField
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ConversationFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static ConversationField[]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 interface net.worcade.client.query.EntityField
name
-
-
-
-
Enum Constant Detail
-
type
public static final ConversationField type
-
modified
public static final ConversationField modified
-
version
public static final ConversationField version
-
name
public static final ConversationField name
-
number
public static final ConversationField number
-
externalNumbers
public static final ConversationField externalNumbers
-
assignee
public static final ConversationField assignee
-
reporter
public static final ConversationField reporter
-
labels
public static final ConversationField labels
-
involvedCompanies
public static final ConversationField involvedCompanies
-
watchers
public static final ConversationField watchers
-
lastContent
public static final ConversationField lastContent
-
linkedConversations
public static final ConversationField linkedConversations
-
archived
public static final ConversationField archived
-
closed
public static final ConversationField closed
-
testMode
public static final ConversationField testMode
-
views
public static final ConversationField views
-
created
public static final ConversationField created
-
creator
public static final ConversationField creator
-
modifier
public static final ConversationField modifier
-
owners
public static final ConversationField owners
-
remoteIds
public static final ConversationField remoteIds
-
-
Method Detail
-
values
public static ConversationField[] 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 (ConversationField c : ConversationField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConversationField valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-