Enum BrandVetting.VettingProvider
- java.lang.Object
-
- java.lang.Enum<BrandVetting.VettingProvider>
-
- com.twilio.rest.messaging.v1.brandregistration.BrandVetting.VettingProvider
-
- All Implemented Interfaces:
Serializable,Comparable<BrandVetting.VettingProvider>
- Enclosing class:
- BrandVetting
public static enum BrandVetting.VettingProvider extends Enum<BrandVetting.VettingProvider>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CAMPAIGN_VERIFY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static BrandVetting.VettingProviderforValue(String value)StringtoString()static BrandVetting.VettingProvidervalueOf(String name)Returns the enum constant of this type with the specified name.static BrandVetting.VettingProvider[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CAMPAIGN_VERIFY
public static final BrandVetting.VettingProvider CAMPAIGN_VERIFY
-
-
Method Detail
-
values
public static BrandVetting.VettingProvider[] 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 (BrandVetting.VettingProvider c : BrandVetting.VettingProvider.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BrandVetting.VettingProvider 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<BrandVetting.VettingProvider>
-
forValue
public static BrandVetting.VettingProvider forValue(String value)
-
-