Class BigIntegerShape
- java.lang.Object
-
- software.amazon.smithy.model.shapes.Shape
-
- software.amazon.smithy.model.shapes.SimpleShape
-
- software.amazon.smithy.model.shapes.NumberShape
-
- software.amazon.smithy.model.shapes.BigIntegerShape
-
- All Implemented Interfaces:
java.lang.Comparable<Shape>
,FromSourceLocation
,ToShapeId
,software.amazon.smithy.utils.Tagged
,software.amazon.smithy.utils.ToSmithyBuilder<BigIntegerShape>
public final class BigIntegerShape extends NumberShape implements software.amazon.smithy.utils.ToSmithyBuilder<BigIntegerShape>
Represents ainteger
shape.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BigIntegerShape.Builder
Builder used to create aBigIntegerShape
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description <R> R
accept(ShapeVisitor<R> cases)
Dispatches the shape to the appropriateShapeVisitor
method.java.util.Optional<BigIntegerShape>
asBigIntegerShape()
static BigIntegerShape.Builder
builder()
BigIntegerShape.Builder
toBuilder()
-
Methods inherited from class software.amazon.smithy.model.shapes.Shape
asBigDecimalShape, asBlobShape, asBooleanShape, asByteShape, asDocumentShape, asDoubleShape, asFloatShape, asIntegerShape, asListShape, asLongShape, asMapShape, asMemberShape, asOperationShape, asResourceShape, asServiceShape, asSetShape, asShortShape, asStringShape, asStructureShape, asTimestampShape, asUnionShape, compareTo, equals, expectTrait, findMemberTrait, findTrait, findTrait, getAllTraits, getId, getMemberTrait, getSourceLocation, getTags, getTrait, getType, hashCode, hasTrait, hasTrait, hasTrait, isBigDecimalShape, isBigIntegerShape, isBlobShape, isBooleanShape, isByteShape, isDocumentShape, isDoubleShape, isFloatShape, isIntegerShape, isListShape, isLongShape, isMapShape, isMemberShape, isOperationShape, isResourceShape, isServiceShape, isSetShape, isShortShape, isStringShape, isStructureShape, isTimestampShape, isUnionShape, members, shapeToBuilder, toShapeId, toString
-
-
-
-
Method Detail
-
builder
public static BigIntegerShape.Builder builder()
-
toBuilder
public BigIntegerShape.Builder toBuilder()
- Specified by:
toBuilder
in interfacesoftware.amazon.smithy.utils.ToSmithyBuilder<BigIntegerShape>
-
accept
public <R> R accept(ShapeVisitor<R> cases)
Description copied from class:Shape
Dispatches the shape to the appropriateShapeVisitor
method.
-
asBigIntegerShape
public java.util.Optional<BigIntegerShape> asBigIntegerShape()
- Overrides:
asBigIntegerShape
in classShape
- Returns:
- Optionally returns the shape as a
BigIntegerShape
.
-
-