Interface TimeZone.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<TimeZone.Builder,TimeZone>,SdkBuilder<TimeZone.Builder,TimeZone>,SdkPojo
- Enclosing class:
- TimeZone
public static interface TimeZone.Builder extends SdkPojo, CopyableBuilder<TimeZone.Builder,TimeZone>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TimeZone.Buildername(String name)The time zone name.TimeZone.Builderoffset(String offset)Time zone offset of the timezone from UTC.TimeZone.BuilderoffsetSeconds(Long offsetSeconds)The offset of the time zone from UTC, in seconds.-
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
-
name
TimeZone.Builder name(String name)
The time zone name.
- Parameters:
name- The time zone name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
offset
TimeZone.Builder offset(String offset)
Time zone offset of the timezone from UTC.
- Parameters:
offset- Time zone offset of the timezone from UTC.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
offsetSeconds
TimeZone.Builder offsetSeconds(Long offsetSeconds)
The offset of the time zone from UTC, in seconds.
- Parameters:
offsetSeconds- The offset of the time zone from UTC, in seconds.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-