Package com.oracle.bmc.devops.requests
Enum ListRefsRequest.RefType
- java.lang.Object
-
- java.lang.Enum<ListRefsRequest.RefType>
-
- com.oracle.bmc.devops.requests.ListRefsRequest.RefType
-
- All Implemented Interfaces:
BmcEnum
,Serializable
,Comparable<ListRefsRequest.RefType>
- Enclosing class:
- ListRefsRequest
public static enum ListRefsRequest.RefType extends Enum<ListRefsRequest.RefType> implements BmcEnum
Reference type to distinguish between branch and tag.If it is not specified, all references are returned.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListRefsRequest.RefType
create(String key)
String
getValue()
static ListRefsRequest.RefType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ListRefsRequest.RefType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Branch
public static final ListRefsRequest.RefType Branch
-
Tag
public static final ListRefsRequest.RefType Tag
-
-
Method Detail
-
values
public static ListRefsRequest.RefType[] 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 (ListRefsRequest.RefType c : ListRefsRequest.RefType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ListRefsRequest.RefType 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
-
create
public static ListRefsRequest.RefType create(String key)
-
-