public static enum RepoId.IdCase extends Enum<RepoId.IdCase> implements Internal.EnumLite
Enum Constant and Description |
---|
ID_NOT_SET |
PROJECT_REPO_ID |
UID |
Modifier and Type | Method and Description |
---|---|
static RepoId.IdCase |
forNumber(int value) |
int |
getNumber() |
static RepoId.IdCase |
valueOf(int value)
Deprecated.
Use
forNumber(int) instead. |
static RepoId.IdCase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RepoId.IdCase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RepoId.IdCase PROJECT_REPO_ID
public static final RepoId.IdCase UID
public static final RepoId.IdCase ID_NOT_SET
public static RepoId.IdCase[] values()
for (RepoId.IdCase c : RepoId.IdCase.values()) System.out.println(c);
public static RepoId.IdCase valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null@Deprecated public static RepoId.IdCase valueOf(int value)
forNumber(int)
instead.public static RepoId.IdCase forNumber(int value)
public int getNumber()
getNumber
in interface Internal.EnumLite
Copyright © 2019 Google LLC. All rights reserved.