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