Class BooleanShape
- java.lang.Object
-
- software.amazon.smithy.model.shapes.Shape
-
- software.amazon.smithy.model.shapes.SimpleShape
-
- software.amazon.smithy.model.shapes.BooleanShape
-
- All Implemented Interfaces:
java.lang.Comparable<Shape>
,FromSourceLocation
,ToShapeId
,software.amazon.smithy.utils.Tagged
,software.amazon.smithy.utils.ToSmithyBuilder<BooleanShape>
public final class BooleanShape extends SimpleShape implements software.amazon.smithy.utils.ToSmithyBuilder<BooleanShape>
Represents aboolean
shape.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
BooleanShape.Builder
Builder used to create aBooleanShape
.
-
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<BooleanShape>
asBooleanShape()
static BooleanShape.Builder
builder()
BooleanShape.Builder
toBuilder()
-
Methods inherited from class software.amazon.smithy.model.shapes.Shape
asBigDecimalShape, asBigIntegerShape, asBlobShape, asByteShape, asDocumentShape, asDoubleShape, asFloatShape, asIntegerShape, asListShape, asLongShape, asMapShape, asMemberShape, asOperationShape, asResourceShape, asServiceShape, asSetShape, asShortShape, asStringShape, asStructureShape, asTimestampShape, asUnionShape, compareTo, equals, findTrait, findTrait, getAllTraits, getId, 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, shapeToBuilder, toShapeId, toString, visitor
-
-
-
-
Method Detail
-
builder
public static BooleanShape.Builder builder()
-
toBuilder
public BooleanShape.Builder toBuilder()
- Specified by:
toBuilder
in interfacesoftware.amazon.smithy.utils.ToSmithyBuilder<BooleanShape>
-
accept
public <R> R accept(ShapeVisitor<R> cases)
Description copied from class:Shape
Dispatches the shape to the appropriateShapeVisitor
method.
-
asBooleanShape
public java.util.Optional<BooleanShape> asBooleanShape()
- Overrides:
asBooleanShape
in classShape
- Returns:
- Optionally returns the shape as a
BooleanShape
.
-
-