Class ShortenInitialModifierMethod

java.lang.Object
de.fraunhofer.iese.mydata.pep.common.PrimitiveModifierMethod
de.fraunhofer.iese.mydata.pep.modifiers.string.ShortenInitialModifierMethod
All Implemented Interfaces:
ModifierMethod

public class ShortenInitialModifierMethod extends PrimitiveModifierMethod
This a default Modifiers method with Pep sdk which shortens the string to it first letter, set it to upper of lower case (default: upper) and append a character (default: point) where event parameter is either a Json Object or string (primitive type)
  • Constructor Details

    • ShortenInitialModifierMethod

      public ShortenInitialModifierMethod()
  • Method Details

    • getDisplayName

      public String getDisplayName()
      Returns:
      Display name
    • doModification

      public Object doModification(Object currentObject, ParameterList modifierMethodParameterList)
      Description copied from interface: ModifierMethod
      This method to be overridden when modifier wants to handle primitive type like Integer(int), Float(float), Boolean(boolean), Long(long), Short(short), Byte(byte) and Double(double) and String
      Parameters:
      currentObject - The primitive value for modification.
      modifierMethodParameterList - List of parameters that should be used for modification
      Returns:
      This default implementation is returning the object without modification.
    • shorten

      public String shorten(String name, String suffixParam, String caseToParam)