Package io.micronaut.context.conditions
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>
@Internal
public record MatchesPropertyCondition(@NonNull String property, @Nullable String value, @Nullable String defaultValue, @NonNull MatchesPropertyCondition.Condition condition)
extends Record
implements Condition
Matches property condition.
- Since:
- 4.6
- Author:
- Denis Stepanov
-
Nested Class Summary
-
Constructor Summary
ConstructorDescriptionMatchesPropertyCondition
(@NonNull String property, @Nullable String value, @Nullable String defaultValue, @NonNull MatchesPropertyCondition.Condition condition) Creates an instance of aMatchesPropertyCondition
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecondition
record component.Returns the value of thedefaultValue
record component.boolean
Indicates whether some other object is "equal to" this one.int
hashCode()
Returns a hash code value for this object.boolean
matches
(ConditionContext context) Check whether a specific condition is met.property()
Returns the value of theproperty
record component.toString()
Returns a string representation of this record class.value()
Returns the value of thevalue
record component.
-
Constructor Details
-
MatchesPropertyCondition
public MatchesPropertyCondition(@NonNull @NonNull String property, @Nullable @Nullable String value, @Nullable @Nullable String defaultValue, @NonNull @NonNull MatchesPropertyCondition.Condition condition) Creates an instance of aMatchesPropertyCondition
record class.- Parameters:
property
- the value for theproperty
record componentvalue
- the value for thevalue
record componentdefaultValue
- the value for thedefaultValue
record componentcondition
- the value for thecondition
record component
-
-
Method Details
-
matches
Description copied from interface:Condition
Check 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
public int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
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. -
property
Returns the value of theproperty
record component.- Returns:
- the value of the
property
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
defaultValue
Returns the value of thedefaultValue
record component.- Returns:
- the value of the
defaultValue
record component
-
condition
Returns the value of thecondition
record component.- Returns:
- the value of the
condition
record component
-