Package com.google.privacy.dlp.v2
Enum CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet
- java.lang.Object
-
- java.lang.Enum<CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet>
-
- com.google.privacy.dlp.v2.CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite,com.google.protobuf.ProtocolMessageEnum,Serializable,Comparable<CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet>
- Enclosing class:
- CryptoReplaceFfxFpeConfig
public static enum CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet extends Enum<CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet> implements com.google.protobuf.ProtocolMessageEnum
These are commonly used subsets of the alphabet that the FFX mode natively supports. In the algorithm, the alphabet is selected using the "radix". Therefore each corresponds to a particular radix.
Protobuf enumgoogle.privacy.dlp.v2.CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALPHA_NUMERIC`[0-9A-Za-z]` (radix of 62)FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIEDUnused.HEXADECIMAL`[0-9A-F]` (radix of 16)NUMERIC`[0-9]` (radix of 10)UNRECOGNIZEDUPPER_CASE_ALPHA_NUMERIC`[0-9A-Z]` (radix of 36)
-
Field Summary
Fields Modifier and Type Field Description static intALPHA_NUMERIC_VALUE`[0-9A-Za-z]` (radix of 62)static intFFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED_VALUEUnused.static intHEXADECIMAL_VALUE`[0-9A-F]` (radix of 16)static intNUMERIC_VALUE`[0-9]` (radix of 10)static intUPPER_CASE_ALPHA_NUMERIC_VALUE`[0-9A-Z]` (radix of 36)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabetforNumber(int value)static com.google.protobuf.Descriptors.EnumDescriptorgetDescriptor()com.google.protobuf.Descriptors.EnumDescriptorgetDescriptorForType()intgetNumber()com.google.protobuf.Descriptors.EnumValueDescriptorgetValueDescriptor()static com.google.protobuf.Internal.EnumLiteMap<CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet>internalGetValueMap()static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabetvalueOf(int value)Deprecated.static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabetvalueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)Returns the enum constant of this type with the specified name.static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabetvalueOf(String name)Returns the enum constant of this type with the specified name.static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED
public static final CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED
Unused.
FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED = 0;
-
NUMERIC
public static final CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet NUMERIC
`[0-9]` (radix of 10)
NUMERIC = 1;
-
HEXADECIMAL
public static final CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet HEXADECIMAL
`[0-9A-F]` (radix of 16)
HEXADECIMAL = 2;
-
UPPER_CASE_ALPHA_NUMERIC
public static final CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet UPPER_CASE_ALPHA_NUMERIC
`[0-9A-Z]` (radix of 36)
UPPER_CASE_ALPHA_NUMERIC = 3;
-
ALPHA_NUMERIC
public static final CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet ALPHA_NUMERIC
`[0-9A-Za-z]` (radix of 62)
ALPHA_NUMERIC = 4;
-
UNRECOGNIZED
public static final CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet UNRECOGNIZED
-
-
Field Detail
-
FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED_VALUE
public static final int FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED_VALUE
Unused.
FFX_COMMON_NATIVE_ALPHABET_UNSPECIFIED = 0;- See Also:
- Constant Field Values
-
NUMERIC_VALUE
public static final int NUMERIC_VALUE
`[0-9]` (radix of 10)
NUMERIC = 1;- See Also:
- Constant Field Values
-
HEXADECIMAL_VALUE
public static final int HEXADECIMAL_VALUE
`[0-9A-F]` (radix of 16)
HEXADECIMAL = 2;- See Also:
- Constant Field Values
-
UPPER_CASE_ALPHA_NUMERIC_VALUE
public static final int UPPER_CASE_ALPHA_NUMERIC_VALUE
`[0-9A-Z]` (radix of 36)
UPPER_CASE_ALPHA_NUMERIC = 3;- See Also:
- Constant Field Values
-
ALPHA_NUMERIC_VALUE
public static final int ALPHA_NUMERIC_VALUE
`[0-9A-Za-z]` (radix of 62)
ALPHA_NUMERIC = 4;- See Also:
- Constant Field Values
-
-
Method Detail
-
values
public static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet[] 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 (CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet c : CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet 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
-
getNumber
public final int getNumber()
- Specified by:
getNumberin interfacecom.google.protobuf.Internal.EnumLite- Specified by:
getNumberin interfacecom.google.protobuf.ProtocolMessageEnum
-
valueOf
@Deprecated public static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet valueOf(int value)
Deprecated.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:
value- 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
-
forNumber
public static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet forNumber(int value)
- Parameters:
value- The numeric wire value of the corresponding enum entry.- Returns:
- The enum associated with the given numeric wire value.
-
internalGetValueMap
public static com.google.protobuf.Internal.EnumLiteMap<CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet> internalGetValueMap()
-
getValueDescriptor
public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor()
- Specified by:
getValueDescriptorin interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptorForType
public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType()
- Specified by:
getDescriptorForTypein interfacecom.google.protobuf.ProtocolMessageEnum
-
getDescriptor
public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor()
-
valueOf
public static CryptoReplaceFfxFpeConfig.FfxCommonNativeAlphabet valueOf(com.google.protobuf.Descriptors.EnumValueDescriptor desc)
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:
desc- 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
-
-