- java.lang.Object
-
- org.mal_lang.langspec.Association
-
public final class Association extends Object
Immutable class representing an association in a MAL language.- Since:
- 1.0.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldgetLeftField()Returns the left field of thisAssociationobject.MetagetMeta()Returns the meta info of thisAssociationobject.StringgetName()Returns the name of thisAssociationobject.FieldgetRightField()Returns the right field of thisAssociationobject.
-
-
-
Method Detail
-
getName
public String getName()
Returns the name of thisAssociationobject.- Returns:
- the name of this
Associationobject - Since:
- 1.0.0
-
getMeta
public Meta getMeta()
Returns the meta info of thisAssociationobject.- Returns:
- the meta info of this
Associationobject - Since:
- 1.0.0
-
getLeftField
public Field getLeftField()
Returns the left field of thisAssociationobject.- Returns:
- the left field of this
Associationobject - Since:
- 1.0.0
-
getRightField
public Field getRightField()
Returns the right field of thisAssociationobject.- Returns:
- the right field of this
Associationobject - Since:
- 1.0.0
-
-