java.lang.Object
java.lang.Record
dev.argon.esexpr.ESExpr.Constructor
- Record Components:
constructor- The constructor name.args- Positional arguments.kwargs- Keyword arguments.
- All Implemented Interfaces:
ESExpr
- Enclosing interface:
ESExpr
public static record ESExpr.Constructor(String constructor, List<ESExpr> args, Map<String,ESExpr> kwargs)
extends Record
implements ESExpr
A constructor value.
-
Nested Class Summary
Nested classes/interfaces inherited from interface dev.argon.esexpr.ESExpr
ESExpr.Array128, ESExpr.Array16, ESExpr.Array32, ESExpr.Array64, ESExpr.Array8, ESExpr.Bool, ESExpr.Constructor, ESExpr.Float16, ESExpr.Float32, ESExpr.Float64, ESExpr.Int, ESExpr.Null, ESExpr.Str -
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionargs()Returns the value of theargsrecord component.Returns the value of theconstructorrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.kwargs()Returns the value of thekwargsrecord component.tag()Gets the tag of this expression.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Constructor
Creates an instance of aConstructorrecord class.- Parameters:
constructor- the value for theconstructorrecord componentargs- the value for theargsrecord componentkwargs- the value for thekwargsrecord component
-
-
Method Details
-
tag
-
toString
-
hashCode
-
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). -
constructor
Returns the value of theconstructorrecord component.- Returns:
- the value of the
constructorrecord component
-
args
-
kwargs
-