Uses of Enum
com.github.jamesnetherton.zulip.client.api.message.MessageType
Packages that use MessageType
Package
Description
-
Uses of MessageType in com.github.jamesnetherton.zulip.client.api.message
Methods in com.github.jamesnetherton.zulip.client.api.message that return MessageTypeModifier and TypeMethodDescriptionstatic MessageTypeMessageType.fromString(String type) Message.getType()ScheduledMessage.getType()static MessageTypeReturns the enum constant of this type with the specified name.static MessageType[]MessageType.values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.github.jamesnetherton.zulip.client.api.message with parameters of type MessageTypeModifier and TypeMethodDescriptionMessageService.sendScheduledMessage(MessageType type, String content, Instant deliveryTimestamp, long... to) Schedules the sending of a message to a specified stream or users. -
Uses of MessageType in com.github.jamesnetherton.zulip.client.api.message.request
Methods in com.github.jamesnetherton.zulip.client.api.message.request with parameters of type MessageTypeModifier and TypeMethodDescriptionEditScheduledMessageApiRequest.withType(MessageType type) Sets the type of scheduled message to be sentConstructors in com.github.jamesnetherton.zulip.client.api.message.request with parameters of type MessageTypeModifierConstructorDescriptionSendMessageApiRequest(ZulipHttpClient client, String content, long streamId, String topic, MessageType type) Constructs aSendMessageApiRequest.SendMessageApiRequest(ZulipHttpClient client, String content, String streamName, String topic, MessageType type) Constructs aSendMessageApiRequestfor sending a message to a stream.SendScheduledMessageApiRequest(ZulipHttpClient client, MessageType type, String content, Instant deliveryTimestamp, long... to) Constructs aSendScheduledMessageApiRequestfor sending a scheduled message.