Package io.quarkus.runtime.logging
Class InheritableLevel
- java.lang.Object
-
- io.quarkus.runtime.logging.InheritableLevel
-
- Direct Known Subclasses:
InheritableLevel.ActualLevel,InheritableLevel.Inherited
public abstract class InheritableLevel extends Object
A level that may be inheritable.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classInheritableLevel.ActualLevelstatic classInheritableLevel.Inheritedstatic classInheritableLevel.Substitution
-
Constructor Summary
Constructors Constructor Description InheritableLevel()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract booleanequals(InheritableLevel other)booleanequals(Object obj)abstract LevelgetLevel()abstract inthashCode()abstract booleanisInherited()static InheritableLevelof(String str)static InheritableLevelof(Level level)abstract StringtoString()
-
-
-
Method Detail
-
of
public static InheritableLevel of(String str)
-
of
public static InheritableLevel of(Level level)
-
isInherited
public abstract boolean isInherited()
-
getLevel
public abstract Level getLevel()
-
equals
public abstract boolean equals(InheritableLevel other)
-
-