public class

FieldLayoutItemImpl

extends Object
implements FieldLayoutItem
java.lang.Object
   ↳ com.atlassian.jira.issue.fields.layout.field.FieldLayoutItemImpl

Summary

Nested Classes
class FieldLayoutItemImpl.Builder Useful for instantiating FieldLayoutItemImpl objects from scratch or copying them. 
Public Methods
int compareTo(FieldLayoutItem fieldLayoutItem)
boolean equals(Object o)
String getFieldDescription()
This method should be used to retrieve the HTML rendered representation of the field description.
FieldLayout getFieldLayout()
Returns the FieldLayout that this item is a part of.
OrderableField getOrderableField()
Gets the field in question.
String getRawFieldDescription()
This method should be used to retrieve the NON-HTML rendered representation of the field description.
String getRendererType()
Returns the renderer type, e.g.
int hashCode()
boolean isHidden()
Whether the field should be invisible in the UI.
boolean isRequired()
Whether a field value is mandatory.
String toString()
[Expand]
Inherited Methods
From class java.lang.Object
From interface com.atlassian.jira.issue.fields.layout.field.FieldLayoutItem
From interface java.lang.Comparable

Public Methods

public int compareTo (FieldLayoutItem fieldLayoutItem)

public boolean equals (Object o)

public String getFieldDescription ()

This method should be used to retrieve the HTML rendered representation of the field description.

Returns
  • a rendered view of the description for OnDemand only

public FieldLayout getFieldLayout ()

Returns the FieldLayout that this item is a part of.

Returns
  • the field layout; may be null.

public OrderableField getOrderableField ()

Gets the field in question.

Returns
  • the field.

public String getRawFieldDescription ()

This method should be used to retrieve the NON-HTML rendered representation of the field description.

Returns
  • the raw field description.

public String getRendererType ()

Returns the renderer type, e.g. RENDERER_TYPE.

Returns
  • the renderer for the field configuration for this field.

public int hashCode ()

public boolean isHidden ()

Whether the field should be invisible in the UI.

Returns
  • true only if the field should be hidden.

public boolean isRequired ()

Whether a field value is mandatory.

Returns
  • true only if a value is required.

public String toString ()