Class CustomLevelConfig
- java.lang.Object
-
- org.apache.logging.log4j.core.config.CustomLevelConfig
-
@Plugin(name="CustomLevel", category="Core", printObject=true) public final class CustomLevelConfig extends java.lang.Object
Descriptor of a custom Level object that is created via configuration.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) static CustomLevelConfig[]EMPTY_ARRAYThe empty array.private intintLevelprivate java.lang.StringlevelName
-
Constructor Summary
Constructors Modifier Constructor Description privateCustomLevelConfig(java.lang.String levelName, int intLevel)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CustomLevelConfigcreateLevel(java.lang.String levelName, int intLevel)Creates a CustomLevelConfig object.booleanequals(java.lang.Object object)intgetIntLevel()Returns the custom level intLevel that determines the strength of the custom level relative to the built-in levels.java.lang.StringgetLevelName()Returns the custom level name.inthashCode()java.lang.StringtoString()
-
-
-
Field Detail
-
EMPTY_ARRAY
static final CustomLevelConfig[] EMPTY_ARRAY
The empty array.
-
levelName
private final java.lang.String levelName
-
intLevel
private final int intLevel
-
-
Method Detail
-
createLevel
@PluginFactory public static CustomLevelConfig createLevel(@PluginAttribute("name") java.lang.String levelName, @PluginAttribute("intLevel") int intLevel)
Creates a CustomLevelConfig object. This also defines the Level object with a call toLevel.forName(String, int).- Parameters:
levelName- name of the custom level.intLevel- the intLevel that determines where this level resides relative to the built-in levels- Returns:
- A CustomLevelConfig object.
-
getLevelName
public java.lang.String getLevelName()
Returns the custom level name.- Returns:
- the custom level name
-
getIntLevel
public int getIntLevel()
Returns the custom level intLevel that determines the strength of the custom level relative to the built-in levels.- Returns:
- the custom level intLevel
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object object)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-