Package liquibase
Enum Scope.Attr
- java.lang.Object
-
- java.lang.Enum<Scope.Attr>
-
- liquibase.Scope.Attr
-
- All Implemented Interfaces:
Serializable
,Comparable<Scope.Attr>
- Enclosing class:
- Scope
public static enum Scope.Attr extends Enum<Scope.Attr>
Enumeration containing standard attributes. Normally use methods like convenienceScope.getResourceAccessor()
orScope.getDatabase()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description changeLogHistoryService
changeSet
checksumVersion
classLoader
database
databaseChangeLog
executeMode
fileEncoding
Deprecated.lineSeparator
lockService
logService
osgiPlatform
quotingStrategy
resourceAccessor
serviceLocator
ui
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Scope.Attr
valueOf(String name)
Returns the enum constant of this type with the specified name.static Scope.Attr[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
logService
public static final Scope.Attr logService
-
ui
public static final Scope.Attr ui
-
resourceAccessor
public static final Scope.Attr resourceAccessor
-
classLoader
public static final Scope.Attr classLoader
-
database
public static final Scope.Attr database
-
quotingStrategy
public static final Scope.Attr quotingStrategy
-
changeLogHistoryService
public static final Scope.Attr changeLogHistoryService
-
lockService
public static final Scope.Attr lockService
-
executeMode
public static final Scope.Attr executeMode
-
lineSeparator
public static final Scope.Attr lineSeparator
-
serviceLocator
public static final Scope.Attr serviceLocator
-
fileEncoding
public static final Scope.Attr fileEncoding
Deprecated.
-
databaseChangeLog
public static final Scope.Attr databaseChangeLog
-
changeSet
public static final Scope.Attr changeSet
-
osgiPlatform
public static final Scope.Attr osgiPlatform
-
checksumVersion
public static final Scope.Attr checksumVersion
-
-
Method Detail
-
values
public static Scope.Attr[] 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 (Scope.Attr c : Scope.Attr.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Scope.Attr 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
-
-