Class Expr
- java.lang.Object
-
- software.amazon.awssdk.services.dynamodb.endpoints.internal.Expr
-
-
Constructor Summary
Constructors Constructor Description Expr()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description abstract <R> Raccept(ExprVisitor<R> visitor)static ExprfromNode(JsonNode node)GetAttrgetAttr(String path)GetAttrgetAttr(Identifier path)static Exprof(boolean value)static Exprof(int value)static Exprof(String value)static ExprparseShortform(String shortForm)Parse a value from a "short form" used within a templatestatic Refref(Identifier name)Stringtemplate()
-
-
-
Method Detail
-
accept
public abstract <R> R accept(ExprVisitor<R> visitor)
-
getAttr
public GetAttr getAttr(Identifier path)
-
parseShortform
public static Expr parseShortform(String shortForm)
Parse a value from a "short form" used within a template- Parameters:
shortForm-- Returns:
-
template
public String template()
-
ref
public static Ref ref(Identifier name)
-
of
public static Expr of(boolean value)
-
of
public static Expr of(int value)
-
-