Package com.kaltura.client.enums
Enum ESearchCategoryFieldName
- java.lang.Object
-
- java.lang.Enum<ESearchCategoryFieldName>
-
- com.kaltura.client.enums.ESearchCategoryFieldName
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<ESearchCategoryFieldName>
public enum ESearchCategoryFieldName extends Enum<ESearchCategoryFieldName> implements EnumAsString
This class was generated using generate.php against an XML schema provided by Kaltura. MANUAL CHANGES TO THIS CLASS WILL BE OVERWRITTEN.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ESearchCategoryFieldNameget(String value)StringgetValue()voidsetValue(String value)static ESearchCategoryFieldNamevalueOf(String name)Returns the enum constant of this type with the specified name.static ESearchCategoryFieldName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CONTRIBUTION_POLICY
public static final ESearchCategoryFieldName CONTRIBUTION_POLICY
-
CREATED_AT
public static final ESearchCategoryFieldName CREATED_AT
-
DEPTH
public static final ESearchCategoryFieldName DEPTH
-
DESCRIPTION
public static final ESearchCategoryFieldName DESCRIPTION
-
DIRECT_ENTRIES_COUNT
public static final ESearchCategoryFieldName DIRECT_ENTRIES_COUNT
-
DIRECT_SUB_CATEGORIES_COUNT
public static final ESearchCategoryFieldName DIRECT_SUB_CATEGORIES_COUNT
-
DISPLAY_IN_SEARCH
public static final ESearchCategoryFieldName DISPLAY_IN_SEARCH
-
ENTRIES_COUNT
public static final ESearchCategoryFieldName ENTRIES_COUNT
-
FULL_IDS
public static final ESearchCategoryFieldName FULL_IDS
-
FULL_NAME
public static final ESearchCategoryFieldName FULL_NAME
-
ID
public static final ESearchCategoryFieldName ID
-
INHERITANCE_TYPE
public static final ESearchCategoryFieldName INHERITANCE_TYPE
-
INHERITED_PARENT_ID
public static final ESearchCategoryFieldName INHERITED_PARENT_ID
-
MEMBERS_COUNT
public static final ESearchCategoryFieldName MEMBERS_COUNT
-
MODERATION
public static final ESearchCategoryFieldName MODERATION
-
NAME
public static final ESearchCategoryFieldName NAME
-
PARENT_ID
public static final ESearchCategoryFieldName PARENT_ID
-
PENDING_ENTRIES_COUNT
public static final ESearchCategoryFieldName PENDING_ENTRIES_COUNT
-
PENDING_MEMBERS_COUNT
public static final ESearchCategoryFieldName PENDING_MEMBERS_COUNT
-
PRIVACY
public static final ESearchCategoryFieldName PRIVACY
-
PRIVACY_CONTEXT
public static final ESearchCategoryFieldName PRIVACY_CONTEXT
-
PRIVACY_CONTEXTS
public static final ESearchCategoryFieldName PRIVACY_CONTEXTS
-
REFERENCE_ID
public static final ESearchCategoryFieldName REFERENCE_ID
-
TAGS
public static final ESearchCategoryFieldName TAGS
-
UPDATED_AT
public static final ESearchCategoryFieldName UPDATED_AT
-
USER_ID
public static final ESearchCategoryFieldName USER_ID
-
-
Method Detail
-
values
public static ESearchCategoryFieldName[] 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 (ESearchCategoryFieldName c : ESearchCategoryFieldName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ESearchCategoryFieldName 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
-
getValue
public String getValue()
- Specified by:
getValuein interfaceEnumAsString
-
setValue
public void setValue(String value)
-
get
public static ESearchCategoryFieldName get(String value)
-
-