public enum EncryptedFieldMaskType extends Enum<EncryptedFieldMaskType>
Java class for EncryptedFieldMaskType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EncryptedFieldMaskType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="all"/>
<enumeration value="creditCard"/>
<enumeration value="ssn"/>
<enumeration value="lastFour"/>
<enumeration value="sin"/>
<enumeration value="nino"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ALL |
CREDIT_CARD |
LAST_FOUR |
NINO |
SIN |
SSN |
| Modifier and Type | Method and Description |
|---|---|
static EncryptedFieldMaskType |
fromValue(String v) |
String |
value() |
static EncryptedFieldMaskType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EncryptedFieldMaskType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptedFieldMaskType ALL
public static final EncryptedFieldMaskType CREDIT_CARD
public static final EncryptedFieldMaskType SSN
public static final EncryptedFieldMaskType LAST_FOUR
public static final EncryptedFieldMaskType SIN
public static final EncryptedFieldMaskType NINO
public static EncryptedFieldMaskType[] values()
for (EncryptedFieldMaskType c : EncryptedFieldMaskType.values()) System.out.println(c);
public static EncryptedFieldMaskType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static EncryptedFieldMaskType fromValue(String v)
Copyright © 2016. All rights reserved.