Package com.slack.api.model
Class Field
- java.lang.Object
-
- com.slack.api.model.Field
-
public class Field extends Object
https://api.slack.com/docs/message-attachments
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Field.FieldBuilder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Field.FieldBuilder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
String
getTitle()
Shown as a bold heading above the value text.String
getValue()
The text value of the field.int
hashCode()
boolean
isValueShortEnough()
An optional flag indicating whether the value is short enough to be displayed side-by-side with other values.void
setTitle(String title)
Shown as a bold heading above the value text.void
setValue(String value)
The text value of the field.void
setValueShortEnough(boolean valueShortEnough)
An optional flag indicating whether the value is short enough to be displayed side-by-side with other values.String
toString()
-
-
-
Method Detail
-
builder
public static Field.FieldBuilder builder()
-
getTitle
public String getTitle()
Shown as a bold heading above the value text. It cannot contain markup and will be escaped for you.
-
getValue
public String getValue()
The text value of the field. It may contain standard message markup (see details below) and must be escaped as normal. May be multi-line. https://api.slack.com/docs/message-attachments#message_formatting
-
isValueShortEnough
public boolean isValueShortEnough()
An optional flag indicating whether the value is short enough to be displayed side-by-side with other values.
-
setTitle
public void setTitle(String title)
Shown as a bold heading above the value text. It cannot contain markup and will be escaped for you.
-
setValue
public void setValue(String value)
The text value of the field. It may contain standard message markup (see details below) and must be escaped as normal. May be multi-line. https://api.slack.com/docs/message-attachments#message_formatting
-
setValueShortEnough
public void setValueShortEnough(boolean valueShortEnough)
An optional flag indicating whether the value is short enough to be displayed side-by-side with other values.
-
canEqual
protected boolean canEqual(Object other)
-
-