Enum EntityType.Value
- java.lang.Object
-
- java.lang.Enum<EntityType.Value>
-
- com.assemblyai.api.resources.transcripts.types.EntityType.Value
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EntityType.Value>
- Enclosing class:
- EntityType
public static enum EntityType.Value extends java.lang.Enum<EntityType.Value>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EntityType.ValuevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EntityType.Value[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BANKING_INFORMATION
public static final EntityType.Value BANKING_INFORMATION
-
BLOOD_TYPE
public static final EntityType.Value BLOOD_TYPE
-
CREDIT_CARD_CVV
public static final EntityType.Value CREDIT_CARD_CVV
-
CREDIT_CARD_EXPIRATION
public static final EntityType.Value CREDIT_CARD_EXPIRATION
-
CREDIT_CARD_NUMBER
public static final EntityType.Value CREDIT_CARD_NUMBER
-
DATE
public static final EntityType.Value DATE
-
DATE_OF_BIRTH
public static final EntityType.Value DATE_OF_BIRTH
-
DRIVERS_LICENSE
public static final EntityType.Value DRIVERS_LICENSE
-
DRUG
public static final EntityType.Value DRUG
-
EMAIL_ADDRESS
public static final EntityType.Value EMAIL_ADDRESS
-
EVENT
public static final EntityType.Value EVENT
-
INJURY
public static final EntityType.Value INJURY
-
LANGUAGE
public static final EntityType.Value LANGUAGE
-
LOCATION
public static final EntityType.Value LOCATION
-
MEDICAL_CONDITION
public static final EntityType.Value MEDICAL_CONDITION
-
MEDICAL_PROCESS
public static final EntityType.Value MEDICAL_PROCESS
-
MONEY_AMOUNT
public static final EntityType.Value MONEY_AMOUNT
-
NATIONALITY
public static final EntityType.Value NATIONALITY
-
OCCUPATION
public static final EntityType.Value OCCUPATION
-
ORGANIZATION
public static final EntityType.Value ORGANIZATION
-
PASSWORD
public static final EntityType.Value PASSWORD
-
PERSON_AGE
public static final EntityType.Value PERSON_AGE
-
PERSON_NAME
public static final EntityType.Value PERSON_NAME
-
PHONE_NUMBER
public static final EntityType.Value PHONE_NUMBER
-
POLITICAL_AFFILIATION
public static final EntityType.Value POLITICAL_AFFILIATION
-
RELIGION
public static final EntityType.Value RELIGION
-
TIME
public static final EntityType.Value TIME
-
URL
public static final EntityType.Value URL
-
US_SOCIAL_SECURITY_NUMBER
public static final EntityType.Value US_SOCIAL_SECURITY_NUMBER
-
UNKNOWN
public static final EntityType.Value UNKNOWN
-
-
Method Detail
-
values
public static EntityType.Value[] 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 (EntityType.Value c : EntityType.Value.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EntityType.Value 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 namejava.lang.NullPointerException- if the argument is null
-
-