Package org.liquibase.maven.plugins
Enum MavenLog.Level
- java.lang.Object
-
- java.lang.Enum<MavenLog.Level>
-
- org.liquibase.maven.plugins.MavenLog.Level
-
- All Implemented Interfaces:
Serializable,Comparable<MavenLog.Level>
- Enclosing class:
- MavenLog
public static enum MavenLog.Level extends Enum<MavenLog.Level>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisAtLeast(MavenLog.Level other)static MavenLog.LevelvalueOf(String name)Returns the enum constant of this type with the specified name.static MavenLog.Level[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEBUG
public static final MavenLog.Level DEBUG
-
debug
public static final MavenLog.Level debug
-
FINE
public static final MavenLog.Level FINE
-
fine
public static final MavenLog.Level fine
-
INFO
public static final MavenLog.Level INFO
-
info
public static final MavenLog.Level info
-
WARNING
public static final MavenLog.Level WARNING
-
warning
public static final MavenLog.Level warning
-
ERROR
public static final MavenLog.Level ERROR
-
error
public static final MavenLog.Level error
-
-
Method Detail
-
values
public static MavenLog.Level[] 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 (MavenLog.Level c : MavenLog.Level.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MavenLog.Level 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
-
isAtLeast
public boolean isAtLeast(MavenLog.Level other)
-
-