Class RecurringTimeWindow (2.4.1)

public final class RecurringTimeWindow extends GeneratedMessageV3 implements RecurringTimeWindowOrBuilder

Represents an arbitrary window of time that recurs.

Protobuf type google.container.v1.RecurringTimeWindow

Static Fields

RECURRENCE_FIELD_NUMBER

public static final int RECURRENCE_FIELD_NUMBER
Field Value
TypeDescription
int

WINDOW_FIELD_NUMBER

public static final int WINDOW_FIELD_NUMBER
Field Value
TypeDescription
int

Static Methods

getDefaultInstance()

public static RecurringTimeWindow getDefaultInstance()
Returns
TypeDescription
RecurringTimeWindow

getDescriptor()

public static final Descriptors.Descriptor getDescriptor()
Returns
TypeDescription
Descriptor

newBuilder()

public static RecurringTimeWindow.Builder newBuilder()
Returns
TypeDescription
RecurringTimeWindow.Builder

newBuilder(RecurringTimeWindow prototype)

public static RecurringTimeWindow.Builder newBuilder(RecurringTimeWindow prototype)
Parameter
NameDescription
prototypeRecurringTimeWindow
Returns
TypeDescription
RecurringTimeWindow.Builder

parseDelimitedFrom(InputStream input)

public static RecurringTimeWindow parseDelimitedFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
IOException

parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static RecurringTimeWindow parseDelimitedFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
IOException

parseFrom(byte[] data)

public static RecurringTimeWindow parseFrom(byte[] data)
Parameter
NameDescription
databyte[]
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)

public static RecurringTimeWindow parseFrom(byte[] data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
databyte[]
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data)

public static RecurringTimeWindow parseFrom(ByteString data)
Parameter
NameDescription
dataByteString
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)

public static RecurringTimeWindow parseFrom(ByteString data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteString
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(CodedInputStream input)

public static RecurringTimeWindow parseFrom(CodedInputStream input)
Parameter
NameDescription
inputCodedInputStream
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
IOException

parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)

public static RecurringTimeWindow parseFrom(CodedInputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputCodedInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
IOException

parseFrom(InputStream input)

public static RecurringTimeWindow parseFrom(InputStream input)
Parameter
NameDescription
inputInputStream
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
IOException

parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)

public static RecurringTimeWindow parseFrom(InputStream input, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
inputInputStream
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
IOException

parseFrom(ByteBuffer data)

public static RecurringTimeWindow parseFrom(ByteBuffer data)
Parameter
NameDescription
dataByteBuffer
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
InvalidProtocolBufferException

parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)

public static RecurringTimeWindow parseFrom(ByteBuffer data, ExtensionRegistryLite extensionRegistry)
Parameters
NameDescription
dataByteBuffer
extensionRegistryExtensionRegistryLite
Returns
TypeDescription
RecurringTimeWindow
Exceptions
TypeDescription
InvalidProtocolBufferException

parser()

public static Parser<RecurringTimeWindow> parser()
Returns
TypeDescription
Parser<RecurringTimeWindow>

Methods

equals(Object obj)

public boolean equals(Object obj)
Parameter
NameDescription
objObject
Returns
TypeDescription
boolean
Overrides

getDefaultInstanceForType()

public RecurringTimeWindow getDefaultInstanceForType()
Returns
TypeDescription
RecurringTimeWindow

getParserForType()

public Parser<RecurringTimeWindow> getParserForType()
Returns
TypeDescription
Parser<RecurringTimeWindow>
Overrides

getRecurrence()

public String getRecurrence()

An RRULE (https://tools.ietf.org/html/rfc5545#section-3.8.5.3) for how this window reccurs. They go on for the span of time between the start and end time. For example, to have something repeat every weekday, you'd use: FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR To repeat some window daily (equivalent to the DailyMaintenanceWindow): FREQ=DAILY For the first weekend of every month: FREQ=MONTHLY;BYSETPOS=1;BYDAY=SA,SU This specifies how frequently the window starts. Eg, if you wanted to have a 9-5 UTC-4 window every weekday, you'd use something like: <code><code> start time = 2019-01-01T09:00:00-0400 end time = 2019-01-01T17:00:00-0400 recurrence = FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR </code></code><code> Windows can span multiple days. Eg, to make the window encompass every weekend from midnight Saturday till the last minute of Sunday UTC: </code><code><code> start time = 2019-01-05T00:00:00Z end time = 2019-01-07T23:59:00Z recurrence = FREQ=WEEKLY;BYDAY=SA </code></code> Note the start and end time's specific dates are largely arbitrary except to specify duration of the window and when it first starts. The FREQ values of HOURLY, MINUTELY, and SECONDLY are not supported.

string recurrence = 2;

Returns
TypeDescription
String

The recurrence.

getRecurrenceBytes()

public ByteString getRecurrenceBytes()

An RRULE (https://tools.ietf.org/html/rfc5545#section-3.8.5.3) for how this window reccurs. They go on for the span of time between the start and end time. For example, to have something repeat every weekday, you'd use: FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR To repeat some window daily (equivalent to the DailyMaintenanceWindow): FREQ=DAILY For the first weekend of every month: FREQ=MONTHLY;BYSETPOS=1;BYDAY=SA,SU This specifies how frequently the window starts. Eg, if you wanted to have a 9-5 UTC-4 window every weekday, you'd use something like: <code><code> start time = 2019-01-01T09:00:00-0400 end time = 2019-01-01T17:00:00-0400 recurrence = FREQ=WEEKLY;BYDAY=MO,TU,WE,TH,FR </code></code><code> Windows can span multiple days. Eg, to make the window encompass every weekend from midnight Saturday till the last minute of Sunday UTC: </code><code><code> start time = 2019-01-05T00:00:00Z end time = 2019-01-07T23:59:00Z recurrence = FREQ=WEEKLY;BYDAY=SA </code></code> Note the start and end time's specific dates are largely arbitrary except to specify duration of the window and when it first starts. The FREQ values of HOURLY, MINUTELY, and SECONDLY are not supported.

string recurrence = 2;

Returns
TypeDescription
ByteString

The bytes for recurrence.

getSerializedSize()

public int getSerializedSize()
Returns
TypeDescription
int
Overrides

getUnknownFields()

public final UnknownFieldSet getUnknownFields()
Returns
TypeDescription
UnknownFieldSet
Overrides

getWindow()

public TimeWindow getWindow()

The window of the first recurrence.

.google.container.v1.TimeWindow window = 1;

Returns
TypeDescription
TimeWindow

The window.

getWindowOrBuilder()

public TimeWindowOrBuilder getWindowOrBuilder()

The window of the first recurrence.

.google.container.v1.TimeWindow window = 1;

Returns
TypeDescription
TimeWindowOrBuilder

hasWindow()

public boolean hasWindow()

The window of the first recurrence.

.google.container.v1.TimeWindow window = 1;

Returns
TypeDescription
boolean

Whether the window field is set.

hashCode()

public int hashCode()
Returns
TypeDescription
int
Overrides

internalGetFieldAccessorTable()

protected GeneratedMessageV3.FieldAccessorTable internalGetFieldAccessorTable()
Returns
TypeDescription
FieldAccessorTable
Overrides

isInitialized()

public final boolean isInitialized()
Returns
TypeDescription
boolean
Overrides

newBuilderForType()

public RecurringTimeWindow.Builder newBuilderForType()
Returns
TypeDescription
RecurringTimeWindow.Builder

newBuilderForType(GeneratedMessageV3.BuilderParent parent)

protected RecurringTimeWindow.Builder newBuilderForType(GeneratedMessageV3.BuilderParent parent)
Parameter
NameDescription
parentBuilderParent
Returns
TypeDescription
RecurringTimeWindow.Builder
Overrides

newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)

protected Object newInstance(GeneratedMessageV3.UnusedPrivateParameter unused)
Parameter
NameDescription
unusedUnusedPrivateParameter
Returns
TypeDescription
Object
Overrides

toBuilder()

public RecurringTimeWindow.Builder toBuilder()
Returns
TypeDescription
RecurringTimeWindow.Builder

writeTo(CodedOutputStream output)

public void writeTo(CodedOutputStream output)
Parameter
NameDescription
outputCodedOutputStream
Overrides Exceptions
TypeDescription
IOException