Class StringConverterImpl

java.lang.Object
com.atlassian.jira.issue.customfields.converters.StringConverterImpl
All Implemented Interfaces:
StringConverter

public class StringConverterImpl extends Object implements StringConverter
  • Constructor Details

    • StringConverterImpl

      public StringConverterImpl()
  • Method Details

    • getString

      public String getString(String value)
      Description copied from interface: StringConverter
      Just turns null into an empty string.
      Specified by:
      getString in interface StringConverter
      Parameters:
      value - The String value to check for null.
      Returns:
      Empty String if the passed value is null, else returns the original value.
    • getObject

      public String getObject(String stringValue)
      Description copied from interface: StringConverter
      This method is a no-op, but I guess it was included for consistency with other Converters.
      Specified by:
      getObject in interface StringConverter
      Parameters:
      stringValue - the stringValue to do absolutely nothing with, and just return as is.
      Returns:
      The exact same object that you gave me.
    • convertNullToEmpty

      public static String convertNullToEmpty(String value)
      Returns Empty String if the passed value is null, else returns the original value.
      Parameters:
      value - The String value to check for null.
      Returns:
      Empty String if the passed value is null, else returns the original value.