Package liquibase

Enum Scope.Attr

    • Enum Constant Detail

      • logService

        public static final Scope.Attr logService
      • 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
      • 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
      • latestChecksumVersion

        public static final Scope.Attr latestChecksumVersion
      • mavenConfigurationProperties

        public static final Scope.Attr mavenConfigurationProperties
        A Map of arguments/configuration properties used in the maven invocation of Liquibase.
    • 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 name
        NullPointerException - if the argument is null