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