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
ConstructorsModifierConstructorDescriptionprotectedLoggerLightConfig(boolean configured, org.apache.logging.log4j.Level level, String[] appenderRefs) Creates an instance of aLoggerLightConfigrecord class. -
Method Summary
Modifier and TypeMethodDescriptionString[]Returns the value of theappenderRefsrecord component.booleanReturns the value of theconfiguredrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.org.apache.logging.log4j.Levellevel()Returns the value of thelevelrecord component.final StringtoString()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 aLoggerLightConfigrecord class.- Parameters:
configured- the value for theconfiguredrecord componentlevel- the value for thelevelrecord componentappenderRefs- the value for theappenderRefsrecord 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 theconfiguredrecord component.- Returns:
- the value of the
configuredrecord component
-
level
public org.apache.logging.log4j.Level level()Returns the value of thelevelrecord component.- Returns:
- the value of the
levelrecord component
-
appenderRefs
Returns the value of theappenderRefsrecord component.- Returns:
- the value of the
appenderRefsrecord component
-