Class EditMessageMedia
- java.lang.Object
-
- com.jtelegram.api.requests.framework.AbstractTelegramRequest
-
- com.jtelegram.api.requests.framework.QueryTelegramRequest<T>
-
- com.jtelegram.api.requests.message.framework.req.SendableInlineRequest<T>
-
- com.jtelegram.api.requests.message.framework.req.SendableInputFileInlineRequest<Message>
-
- com.jtelegram.api.requests.message.edit.EditMessageMedia
-
- All Implemented Interfaces:
InputFileRequest
,TelegramRequest
public class EditMessageMedia extends SendableInputFileInlineRequest<Message>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EditMessageMedia.EditMessageMediaBuilder
-
Field Summary
-
Fields inherited from class com.jtelegram.api.requests.framework.AbstractTelegramRequest
errorHandler, gson
-
Fields inherited from interface com.jtelegram.api.message.input.file.InputFileRequest
OCTET_STREAM_TYPE
-
Fields inherited from interface com.jtelegram.api.requests.framework.TelegramRequest
JSON_MEDIA_TYPE
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
EditMessageMedia(java.util.function.Consumer<Message> callback, java.util.function.Consumer<TelegramException> errorHandler, ChatId chatId, java.lang.Integer messageId, java.lang.String inlineMessageId, InputMedia media)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static EditMessageMedia.EditMessageMediaBuilder
builder()
protected boolean
canEqual(java.lang.Object other)
boolean
equals(java.lang.Object o)
static EditMessageMedia.EditMessageMediaBuilder
forInlineMessage(java.lang.String inlineMessageId)
Creates a request builder to edit the media of the specified message.static EditMessageMedia.EditMessageMediaBuilder
forMessage(AudioMessage message)
Creates a request builder to edit the media of the specified message.static EditMessageMedia.EditMessageMediaBuilder
forMessage(DocumentMessage message)
Creates a request builder to edit the media of the specified message.static EditMessageMedia.EditMessageMediaBuilder
forMessage(PhotoMessage message)
Creates a request builder to edit the media of the specified message.static EditMessageMedia.EditMessageMediaBuilder
forMessage(VideoMessage message)
Creates a request builder to edit the media of the specified message.java.util.List<InputFile>
getInputFiles()
InputMedia
getMedia()
int
hashCode()
protected boolean
isValid()
Checks validity of this request.java.lang.String
toString()
-
Methods inherited from class com.jtelegram.api.requests.message.framework.req.SendableInputFileInlineRequest
superBuild
-
Methods inherited from class com.jtelegram.api.requests.message.framework.req.SendableInlineRequest
getChatId, getInlineMessageId, getMessageId
-
Methods inherited from class com.jtelegram.api.requests.framework.QueryTelegramRequest
handleResponse, setCallback
-
Methods inherited from class com.jtelegram.api.requests.framework.AbstractTelegramRequest
getBody, getEndPoint, handleError, handleException, serialize, setErrorHandler, validate
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.jtelegram.api.message.input.file.InputFileRequest
getBuilder
-
Methods inherited from interface com.jtelegram.api.requests.framework.TelegramRequest
build
-
-
-
-
Constructor Detail
-
EditMessageMedia
protected EditMessageMedia(java.util.function.Consumer<Message> callback, java.util.function.Consumer<TelegramException> errorHandler, ChatId chatId, java.lang.Integer messageId, java.lang.String inlineMessageId, InputMedia media)
-
-
Method Detail
-
isValid
protected boolean isValid()
Description copied from class:QueryTelegramRequest
Checks validity of this request. Internal method used before sending.- Overrides:
isValid
in classSendableInlineRequest<Message>
- Returns:
- If it's valid
-
getInputFiles
public java.util.List<InputFile> getInputFiles()
-
forMessage
public static EditMessageMedia.EditMessageMediaBuilder forMessage(AudioMessage message)
Creates a request builder to edit the media of the specified message.- Parameters:
message
- the message that will be edited when the request is executed- Returns:
- the request builder
-
forMessage
public static EditMessageMedia.EditMessageMediaBuilder forMessage(DocumentMessage message)
Creates a request builder to edit the media of the specified message.- Parameters:
message
- the message that will be edited when the request is executed- Returns:
- the request builder
-
forMessage
public static EditMessageMedia.EditMessageMediaBuilder forMessage(PhotoMessage message)
Creates a request builder to edit the media of the specified message.- Parameters:
message
- the message that will be edited when the request is executed- Returns:
- the request builder
-
forMessage
public static EditMessageMedia.EditMessageMediaBuilder forMessage(VideoMessage message)
Creates a request builder to edit the media of the specified message.- Parameters:
message
- the message that will be edited when the request is executed- Returns:
- the request builder
-
forInlineMessage
public static EditMessageMedia.EditMessageMediaBuilder forInlineMessage(java.lang.String inlineMessageId)
Creates a request builder to edit the media of the specified message.- Parameters:
inlineMessageId
- the ID of the inline message that will be edited when the request is executed- Returns:
- the request builder
-
builder
public static EditMessageMedia.EditMessageMediaBuilder builder()
-
getMedia
public InputMedia getMedia()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classSendableInlineRequest<Message>
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classQueryTelegramRequest<Message>
-
canEqual
protected boolean canEqual(java.lang.Object other)
- Overrides:
canEqual
in classQueryTelegramRequest<Message>
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classQueryTelegramRequest<Message>
-
-