Class TimeOfDay
- java.lang.Object
-
- org.opensearch.client.opensearch.watcher.TimeOfDay
-
- All Implemented Interfaces:
JsonpSerializable
,TaggedUnion<TimeOfDay.Kind,java.lang.Object>
@JsonpDeserializable public class TimeOfDay extends java.lang.Object implements TaggedUnion<TimeOfDay.Kind,java.lang.Object>, JsonpSerializable
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
TimeOfDay.Builder
static class
TimeOfDay.Kind
-
Field Summary
Fields Modifier and Type Field Description static JsonpDeserializer<TimeOfDay>
_DESERIALIZER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
_get()
TimeOfDay.Kind
_kind()
Get the of the kind of variant held by this object.HourAndMinute
hourMinute()
Get thehour_minute
variant value.boolean
isHourMinute()
Is this variant instance of kindhour_minute
?boolean
isText()
Is this variant instance of kindtext
?static TimeOfDay
of(java.util.function.Function<TimeOfDay.Builder,ObjectBuilder<TimeOfDay>> fn)
void
serialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)
java.lang.String
text()
Get thetext
variant value.
-
-
-
Field Detail
-
_DESERIALIZER
public static final JsonpDeserializer<TimeOfDay> _DESERIALIZER
-
-
Method Detail
-
_kind
public final TimeOfDay.Kind _kind()
Description copied from interface:TaggedUnion
Get the of the kind of variant held by this object.- Specified by:
_kind
in interfaceTaggedUnion<TimeOfDay.Kind,java.lang.Object>
- Returns:
- the variant kind
-
_get
public final java.lang.Object _get()
- Specified by:
_get
in interfaceTaggedUnion<TimeOfDay.Kind,java.lang.Object>
-
of
public static TimeOfDay of(java.util.function.Function<TimeOfDay.Builder,ObjectBuilder<TimeOfDay>> fn)
-
isText
public boolean isText()
Is this variant instance of kindtext
?
-
text
public java.lang.String text()
Get thetext
variant value.- Throws:
java.lang.IllegalStateException
- if the current variant is not of thetext
kind.
-
isHourMinute
public boolean isHourMinute()
Is this variant instance of kindhour_minute
?
-
hourMinute
public HourAndMinute hourMinute()
Get thehour_minute
variant value.- Throws:
java.lang.IllegalStateException
- if the current variant is not of thehour_minute
kind.
-
serialize
public void serialize(jakarta.json.stream.JsonGenerator generator, JsonpMapper mapper)
- Specified by:
serialize
in interfaceJsonpSerializable
-
-