public enum CommonArgumentNames extends Enum<CommonArgumentNames>
| Enum Constant and Description |
|---|
CHANGELOG_FILE |
PASSWORD |
URL |
USERNAME |
| Modifier and Type | Method and Description |
|---|---|
String |
getArgumentName() |
static CommonArgumentNames |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CommonArgumentNames[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommonArgumentNames USERNAME
public static final CommonArgumentNames PASSWORD
public static final CommonArgumentNames URL
public static final CommonArgumentNames CHANGELOG_FILE
public static CommonArgumentNames[] values()
for (CommonArgumentNames c : CommonArgumentNames.values()) System.out.println(c);
public static CommonArgumentNames 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 nullpublic String getArgumentName()
Copyright © 2022 Liquibase.org. All rights reserved.