public interface DateTimePickerOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getLabel()
public abstract String getLabel()
The text that prompts users to input a date, a time, or a date and time.
For example, if users are scheduling an appointment, use a label such as
Appointment date
or Appointment date and time
.
string label = 2;
Returns | |
---|---|
Type | Description |
String |
The label. |
getLabelBytes()
public abstract ByteString getLabelBytes()
The text that prompts users to input a date, a time, or a date and time.
For example, if users are scheduling an appointment, use a label such as
Appointment date
or Appointment date and time
.
string label = 2;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for label. |
getName()
public abstract String getName()
The name by which the DateTimePicker
is identified in a form input event.
For details about working with form inputs, see Receive form data.
string name = 1;
Returns | |
---|---|
Type | Description |
String |
The name. |
getNameBytes()
public abstract ByteString getNameBytes()
The name by which the DateTimePicker
is identified in a form input event.
For details about working with form inputs, see Receive form data.
string name = 1;
Returns | |
---|---|
Type | Description |
ByteString |
The bytes for name. |
getOnChangeAction()
public abstract Action getOnChangeAction()
Triggered when the user clicks Save or Clear from the
DateTimePicker
interface.
.google.apps.card.v1.Action on_change_action = 6;
Returns | |
---|---|
Type | Description |
Action |
The onChangeAction. |
getOnChangeActionOrBuilder()
public abstract ActionOrBuilder getOnChangeActionOrBuilder()
Triggered when the user clicks Save or Clear from the
DateTimePicker
interface.
.google.apps.card.v1.Action on_change_action = 6;
Returns | |
---|---|
Type | Description |
ActionOrBuilder |
getTimezoneOffsetDate()
public abstract int getTimezoneOffsetDate()
The number representing the time zone offset from UTC, in minutes.
If set, the value_ms_epoch
is displayed in the specified time zone.
If unset, the value defaults to the user's time zone setting.
int32 timezone_offset_date = 5;
Returns | |
---|---|
Type | Description |
int |
The timezoneOffsetDate. |
getType()
public abstract DateTimePicker.DateTimePickerType getType()
Whether the widget supports inputting a date, a time, or the date and time.
.google.apps.card.v1.DateTimePicker.DateTimePickerType type = 3;
Returns | |
---|---|
Type | Description |
DateTimePicker.DateTimePickerType |
The type. |
getTypeValue()
public abstract int getTypeValue()
Whether the widget supports inputting a date, a time, or the date and time.
.google.apps.card.v1.DateTimePicker.DateTimePickerType type = 3;
Returns | |
---|---|
Type | Description |
int |
The enum numeric value on the wire for type. |
getValueMsEpoch()
public abstract long getValueMsEpoch()
The default value displayed in the widget, in milliseconds since Unix epoch time.
Specify the value based on the type of picker (DateTimePickerType
):
DATE_AND_TIME
: a calendar date and time in UTC. For example, to represent January 1, 2023 at 12:00 PM UTC, use1672574400000
.DATE_ONLY
: a calendar date at 00:00:00 UTC. For example, to represent January 1, 2023, use1672531200000
.TIME_ONLY
: a time in UTC. For example, to represent 12:00 PM, use43200000
(or12 * 60 * 60 * 1000
).
int64 value_ms_epoch = 4;
Returns | |
---|---|
Type | Description |
long |
The valueMsEpoch. |
hasOnChangeAction()
public abstract boolean hasOnChangeAction()
Triggered when the user clicks Save or Clear from the
DateTimePicker
interface.
.google.apps.card.v1.Action on_change_action = 6;
Returns | |
---|---|
Type | Description |
boolean |
Whether the onChangeAction field is set. |