public enum GitVariables extends Enum<GitVariables> implements PropertyVariables
| Enum Constant and Description |
|---|
GIT_PASSWORD |
GIT_URL |
GIT_USER_NAME |
| Modifier and Type | Method and Description |
|---|---|
static GitVariables |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GitVariables[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfgetNamepublic static final GitVariables GIT_USER_NAME
public static final GitVariables GIT_PASSWORD
public static final GitVariables GIT_URL
public static GitVariables[] values()
for (GitVariables c : GitVariables.values()) System.out.println(c);
public static GitVariables 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 nullCopyright © 2022. All rights reserved.