java.lang.Object
java.lang.Record
org.aya.core.serde.SerTerm.Path
- All Implemented Interfaces:
Serializable,SerTerm,org.aya.guest0x0.cubical.Restr.TermLike<SerTerm>
- Enclosing interface:
SerTerm
public static record SerTerm.Path(@NotNull kala.collection.immutable.ImmutableSeq<SerTerm.SimpVar> params, @NotNull SerTerm type, @NotNull org.aya.guest0x0.cubical.Partial<SerTerm> partial)
extends Record
implements SerTerm
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.aya.guest0x0.cubical.Restr.TermLike
org.aya.guest0x0.cubical.Restr.TermLike.Factory<T>Nested classes/interfaces inherited from interface org.aya.core.serde.SerTerm
SerTerm.Access, SerTerm.App, SerTerm.CallData, SerTerm.Clazz, SerTerm.Coe, SerTerm.Con, SerTerm.ConInfo, SerTerm.ConReduceRule, SerTerm.Data, SerTerm.DeState, SerTerm.FieldRef, SerTerm.Fn, SerTerm.FnReduceRule, SerTerm.InS, SerTerm.Interval, SerTerm.Lam, SerTerm.Match, SerTerm.Mula, SerTerm.New, SerTerm.OutS, SerTerm.PartEl, SerTerm.PartTy, SerTerm.Path, SerTerm.PathApp, SerTerm.PathLam, SerTerm.Pi, SerTerm.Prim, SerTerm.Proj, SerTerm.Ref, SerTerm.SerArg, SerTerm.SerIntegerOps, SerTerm.SerParam, SerTerm.SerShapedApplicable, SerTerm.ShapedInt, SerTerm.ShapedList, SerTerm.Sigma, SerTerm.SimpVar, SerTerm.Sort, SerTerm.Str, SerTerm.Tup -
Constructor Summary
ConstructorsConstructorDescriptionPath(@NotNull kala.collection.immutable.ImmutableSeq<SerTerm.SimpVar> params, @NotNull SerTerm type, @NotNull org.aya.guest0x0.cubical.Partial<SerTerm> partial) Creates an instance of aPathrecord class. -
Method Summary
Modifier and TypeMethodDescription@NotNull PathTermde(@NotNull SerTerm.DeState state) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotNull kala.collection.immutable.ImmutableSeq<SerTerm.SimpVar>params()Returns the value of theparamsrecord component.@NotNull org.aya.guest0x0.cubical.Partial<SerTerm>partial()Returns the value of thepartialrecord component.final StringtoString()Returns a string representation of this record class.@NotNull SerTermtype()Returns the value of thetyperecord component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface org.aya.guest0x0.cubical.Restr.TermLike
asFormula
-
Constructor Details
-
Path
public Path(@NotNull @NotNull kala.collection.immutable.ImmutableSeq<SerTerm.SimpVar> params, @NotNull @NotNull SerTerm type, @NotNull @NotNull org.aya.guest0x0.cubical.Partial<SerTerm> partial) Creates an instance of aPathrecord class.- Parameters:
params- the value for theparamsrecord componenttype- the value for thetyperecord componentpartial- the value for thepartialrecord component
-
-
Method Details
-
de
-
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. All components in this record class are compared withObjects::equals(Object,Object). -
params
Returns the value of theparamsrecord component.- Returns:
- the value of the
paramsrecord component
-
type
Returns the value of thetyperecord component.- Returns:
- the value of the
typerecord component
-
partial
Returns the value of thepartialrecord component.- Returns:
- the value of the
partialrecord component
-