Interface EditableEmbedField
-
- All Superinterfaces:
EmbedField,Formattable,Nameable
public interface EditableEmbedField extends EmbedField
This interface represents an embed field that can be edited.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetInline(boolean inline)Sets whether or not this field should display inline.voidsetName(String name)Sets the name of the field.voidsetValue(String value)Sets the value of the field.-
Methods inherited from interface org.javacord.api.entity.message.embed.EmbedField
getValue, isInline
-
-
-
-
Method Detail
-
setName
void setName(String name)
Sets the name of the field.- Parameters:
name- The name of the field.
-
setValue
void setValue(String value)
Sets the value of the field.- Parameters:
value- The value of the field.
-
setInline
void setInline(boolean inline)
Sets whether or not this field should display inline.- Parameters:
inline- Whether or not this field should display inline.
-
-