public interface

TextFieldCharacterLengthValidator

com.atlassian.jira.issue.fields.TextFieldCharacterLengthValidator
Known Indirect Subclasses

Class Overview

Checks, whether a string's length exceeds a specific limit.

Summary

Public Methods
long getMaximumNumberOfCharacters()
Returns the maximum number of characters to be entered for a single field.
boolean isTextTooLong(String text)
Validate the length of the given string against the maximum number.

Public Methods

public long getMaximumNumberOfCharacters ()

Returns the maximum number of characters to be entered for a single field.

Returns
  • the maximum number of characters to be entered for a single field.

public boolean isTextTooLong (String text)

Validate the length of the given string against the maximum number.

Parameters
text the text to be checked; can be null
Returns
  • whether the given text is longer than the maximum number of characters; null is always valid