Package com.google.privacy.dlp.v2
Enum QuoteInfo.ParsedQuoteCase
- java.lang.Object
-
- java.lang.Enum<QuoteInfo.ParsedQuoteCase>
-
- com.google.privacy.dlp.v2.QuoteInfo.ParsedQuoteCase
-
- All Implemented Interfaces:
com.google.protobuf.Internal.EnumLite
,Serializable
,Comparable<QuoteInfo.ParsedQuoteCase>
- Enclosing class:
- QuoteInfo
public static enum QuoteInfo.ParsedQuoteCase extends Enum<QuoteInfo.ParsedQuoteCase> implements com.google.protobuf.Internal.EnumLite
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATE_TIME
PARSEDQUOTE_NOT_SET
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static QuoteInfo.ParsedQuoteCase
forNumber(int value)
int
getNumber()
static QuoteInfo.ParsedQuoteCase
valueOf(int value)
Deprecated.static QuoteInfo.ParsedQuoteCase
valueOf(String name)
Returns the enum constant of this type with the specified name.static QuoteInfo.ParsedQuoteCase[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DATE_TIME
public static final QuoteInfo.ParsedQuoteCase DATE_TIME
-
PARSEDQUOTE_NOT_SET
public static final QuoteInfo.ParsedQuoteCase PARSEDQUOTE_NOT_SET
-
-
Method Detail
-
values
public static QuoteInfo.ParsedQuoteCase[] 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 (QuoteInfo.ParsedQuoteCase c : QuoteInfo.ParsedQuoteCase.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static QuoteInfo.ParsedQuoteCase 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
-
valueOf
@Deprecated public static QuoteInfo.ParsedQuoteCase 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 QuoteInfo.ParsedQuoteCase forNumber(int value)
-
getNumber
public int getNumber()
- Specified by:
getNumber
in interfacecom.google.protobuf.Internal.EnumLite
-
-