Package com.kaltura.client.enums
Enum ESearchGroupFieldName
- java.lang.Object
-
- java.lang.Enum<ESearchGroupFieldName>
-
- com.kaltura.client.enums.ESearchGroupFieldName
-
- All Implemented Interfaces:
EnumAsString,Serializable,Comparable<ESearchGroupFieldName>
public enum ESearchGroupFieldName extends Enum<ESearchGroupFieldName> 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
Enum Constants Enum Constant Description COMPANYCOUNTRYCREATED_ATEMAILEXTERNAL_IDFIRST_NAMEGROUP_IDSIS_ADMINIS_HASHEDLAST_NAMELOGIN_ENABLEDPERMISSION_NAMESROLE_IDSSCREEN_NAMETAGSTITLEUPDATED_ATUSER_ID
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ESearchGroupFieldNameget(String value)StringgetValue()voidsetValue(String value)static ESearchGroupFieldNamevalueOf(String name)Returns the enum constant of this type with the specified name.static ESearchGroupFieldName[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPANY
public static final ESearchGroupFieldName COMPANY
-
COUNTRY
public static final ESearchGroupFieldName COUNTRY
-
CREATED_AT
public static final ESearchGroupFieldName CREATED_AT
-
EMAIL
public static final ESearchGroupFieldName EMAIL
-
EXTERNAL_ID
public static final ESearchGroupFieldName EXTERNAL_ID
-
FIRST_NAME
public static final ESearchGroupFieldName FIRST_NAME
-
GROUP_IDS
public static final ESearchGroupFieldName GROUP_IDS
-
IS_ADMIN
public static final ESearchGroupFieldName IS_ADMIN
-
IS_HASHED
public static final ESearchGroupFieldName IS_HASHED
-
LAST_NAME
public static final ESearchGroupFieldName LAST_NAME
-
LOGIN_ENABLED
public static final ESearchGroupFieldName LOGIN_ENABLED
-
PERMISSION_NAMES
public static final ESearchGroupFieldName PERMISSION_NAMES
-
ROLE_IDS
public static final ESearchGroupFieldName ROLE_IDS
-
SCREEN_NAME
public static final ESearchGroupFieldName SCREEN_NAME
-
TAGS
public static final ESearchGroupFieldName TAGS
-
TITLE
public static final ESearchGroupFieldName TITLE
-
UPDATED_AT
public static final ESearchGroupFieldName UPDATED_AT
-
USER_ID
public static final ESearchGroupFieldName USER_ID
-
-
Method Detail
-
values
public static ESearchGroupFieldName[] 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 (ESearchGroupFieldName c : ESearchGroupFieldName.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ESearchGroupFieldName 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 ESearchGroupFieldName get(String value)
-
-