Interface MaintenanceWindowOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
MaintenanceWindow
,MaintenanceWindow.Builder
public interface MaintenanceWindowOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.type.DayOfWeek
getDayOfWeek()
The day of week, when the window starts.int
getDayOfWeekValue()
The day of week, when the window starts.com.google.protobuf.Int32Value
getHourOfDay()
The hour of day (0-23) when the window starts.com.google.protobuf.Int32ValueOrBuilder
getHourOfDayOrBuilder()
The hour of day (0-23) when the window starts.boolean
hasHourOfDay()
The hour of day (0-23) when the window starts.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasHourOfDay
boolean hasHourOfDay()
The hour of day (0-23) when the window starts.
.google.protobuf.Int32Value hour_of_day = 1;
- Returns:
- Whether the hourOfDay field is set.
-
getHourOfDay
com.google.protobuf.Int32Value getHourOfDay()
The hour of day (0-23) when the window starts.
.google.protobuf.Int32Value hour_of_day = 1;
- Returns:
- The hourOfDay.
-
getHourOfDayOrBuilder
com.google.protobuf.Int32ValueOrBuilder getHourOfDayOrBuilder()
The hour of day (0-23) when the window starts.
.google.protobuf.Int32Value hour_of_day = 1;
-
getDayOfWeekValue
int getDayOfWeekValue()
The day of week, when the window starts.
.google.type.DayOfWeek day_of_week = 2;
- Returns:
- The enum numeric value on the wire for dayOfWeek.
-
getDayOfWeek
com.google.type.DayOfWeek getDayOfWeek()
The day of week, when the window starts.
.google.type.DayOfWeek day_of_week = 2;
- Returns:
- The dayOfWeek.
-
-