Class RecordLiteral
- java.lang.Object
-
- software.amazon.smithy.rulesengine.language.syntax.SyntaxElement
-
- software.amazon.smithy.rulesengine.language.syntax.expressions.Expression
-
- software.amazon.smithy.rulesengine.language.syntax.expressions.literal.Literal
-
- software.amazon.smithy.rulesengine.language.syntax.expressions.literal.RecordLiteral
-
- All Implemented Interfaces:
FromSourceLocation
,ToNode
,TypeCheck
,ToCondition
,ToExpression
public final class RecordLiteral extends Literal
A record literal value, containing a map of identifiers to other literals.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T> T
accept(LiteralVisitor<T> visitor)
java.util.Optional<java.util.Map<Identifier,Literal>>
asRecordLiteral()
boolean
equals(java.lang.Object obj)
int
hashCode()
java.util.Map<Identifier,Literal>
members()
Gets the map of identifiers to literals contained within this record.Node
toNode()
Converts a value to aNode
.java.lang.String
toString()
-
Methods inherited from class software.amazon.smithy.rulesengine.language.syntax.expressions.literal.Literal
accept, asBooleanLiteral, asIntegerLiteral, asStringLiteral, asTupleLiteral, booleanLiteral, evaluate, fromNode, integerLiteral, recordLiteral, stringLiteral, tupleLiteral, typeCheckLocal
-
Methods inherited from class software.amazon.smithy.rulesengine.language.syntax.expressions.Expression
getLiteral, getReference, getSourceLocation, of, of, of, parseShortform, toConditionBuilder, toExpression, type, typeCheck
-
Methods inherited from class software.amazon.smithy.rulesengine.language.syntax.SyntaxElement
booleanEqual, getAttr, getAttr, isSet, isValidHostLabel, not, parseUrl, stringEqual, substring, template
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.smithy.rulesengine.language.syntax.ToCondition
toCondition, toCondition
-
-
-
-
Method Detail
-
members
public java.util.Map<Identifier,Literal> members()
Gets the map of identifiers to literals contained within this record.- Returns:
- the map of identifiers to literals.
-
accept
public <T> T accept(LiteralVisitor<T> visitor)
-
asRecordLiteral
public java.util.Optional<java.util.Map<Identifier,Literal>> asRecordLiteral()
- Overrides:
asRecordLiteral
in classLiteral
-
hashCode
public int hashCode()
- Specified by:
hashCode
in classExpression
-
equals
public boolean equals(java.lang.Object obj)
- Specified by:
equals
in classExpression
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-