Package org.nuxeo.runtime.test.runner
Record Class LogFeature.LoggerLightConfig
java.lang.Object
java.lang.Record
org.nuxeo.runtime.test.runner.LogFeature.LoggerLightConfig
- Enclosing class:
- LogFeature
-
Constructor Summary
ModifierConstructorDescriptionprotected
LoggerLightConfig
(boolean configured, org.apache.logging.log4j.Level level, String[] appenderRefs) Creates an instance of aLoggerLightConfig
record class. -
Method Summary
Modifier and TypeMethodDescriptionString[]
Returns the value of theappenderRefs
record component.boolean
Returns the value of theconfigured
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.org.apache.logging.log4j.Level
level()
Returns the value of thelevel
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
LoggerLightConfig
protected LoggerLightConfig(boolean configured, org.apache.logging.log4j.Level level, String[] appenderRefs) Creates an instance of aLoggerLightConfig
record class.- Parameters:
configured
- the value for theconfigured
record componentlevel
- the value for thelevel
record componentappenderRefs
- the value for theappenderRefs
record component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
configured
public boolean configured()Returns the value of theconfigured
record component.- Returns:
- the value of the
configured
record component
-
level
public org.apache.logging.log4j.Level level()Returns the value of thelevel
record component.- Returns:
- the value of the
level
record component
-
appenderRefs
Returns the value of theappenderRefs
record component.- Returns:
- the value of the
appenderRefs
record component
-