Record Class MatchesPropertyCondition
java.lang.Object
java.lang.Record
io.micronaut.context.conditions.MatchesPropertyCondition
- Record Components:
property- The propertyvalue- The valuedefaultValue- The default valuecondition- The condition
- All Implemented Interfaces:
Condition, Predicate<ConditionContext>
-
Nested Class Summary
Nested Classes -
Constructor Summary
ConstructorsConstructorDescriptionMatchesPropertyCondition(String property, @Nullable String value, @Nullable String defaultValue, MatchesPropertyCondition.Condition condition) Creates an instance of aMatchesPropertyConditionrecord class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theconditionrecord component.@Nullable StringReturns the value of thedefaultValuerecord component.booleanIndicates whether some other object is "equal to" this one.inthashCode()Returns a hash code value for this object.booleanmatches(ConditionContext context) Check whether a specific condition is met.property()Returns the value of thepropertyrecord component.toString()Returns a string representation of this record class.@Nullable Stringvalue()Returns the value of thevaluerecord component.
-
Constructor Details
-
MatchesPropertyCondition
public MatchesPropertyCondition(String property, @Nullable String value, @Nullable String defaultValue, MatchesPropertyCondition.Condition condition) Creates an instance of aMatchesPropertyConditionrecord class.- Parameters:
property- the value for thepropertyrecord componentvalue- the value for thevaluerecord componentdefaultValue- the value for thedefaultValuerecord componentcondition- the value for theconditionrecord component
-
-
Method Details
-
matches
Description copied from interface:ConditionCheck whether a specific condition is met. -
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. All components in this record class are compared withObjects::equals(Object,Object). -
hashCode
-
toString
-
property
-
value
-
defaultValue
Returns the value of thedefaultValuerecord component.- Returns:
- the value of the
defaultValuerecord component
-
condition
-