Interface AnnotationValue.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AnnotationValue.Builder,AnnotationValue>,SdkBuilder<AnnotationValue.Builder,AnnotationValue>,SdkPojo
- Enclosing class:
- AnnotationValue
@Mutable @NotThreadSafe public static interface AnnotationValue.Builder extends SdkPojo, CopyableBuilder<AnnotationValue.Builder,AnnotationValue>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AnnotationValue.BuilderbooleanValue(Boolean booleanValue)Value for a Boolean annotation.AnnotationValue.BuildernumberValue(Double numberValue)Value for a Number annotation.AnnotationValue.BuilderstringValue(String stringValue)Value for a String annotation.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
numberValue
AnnotationValue.Builder numberValue(Double numberValue)
Value for a Number annotation.
- Parameters:
numberValue- Value for a Number annotation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
booleanValue
AnnotationValue.Builder booleanValue(Boolean booleanValue)
Value for a Boolean annotation.
- Parameters:
booleanValue- Value for a Boolean annotation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stringValue
AnnotationValue.Builder stringValue(String stringValue)
Value for a String annotation.
- Parameters:
stringValue- Value for a String annotation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-