Enum RegionTag.RegionTagRegion
- java.lang.Object
-
- java.lang.Enum<RegionTag.RegionTagRegion>
-
- com.google.api.generator.gapic.model.RegionTag.RegionTagRegion
-
- All Implemented Interfaces:
Serializable,Comparable<RegionTag.RegionTagRegion>
- Enclosing class:
- RegionTag
public static enum RegionTag.RegionTagRegion extends Enum<RegionTag.RegionTagRegion>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RegionTag.RegionTagRegionvalueOf(String name)Returns the enum constant of this type with the specified name.static RegionTag.RegionTagRegion[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final RegionTag.RegionTagRegion START
-
END
public static final RegionTag.RegionTagRegion END
-
-
Method Detail
-
values
public static RegionTag.RegionTagRegion[] 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 (RegionTag.RegionTagRegion c : RegionTag.RegionTagRegion.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RegionTag.RegionTagRegion 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
-
-