Class StringUtils

java.lang.Object
me.datafox.dfxengine.utils.StringUtils

public class StringUtils extends Object
Utilities for manipulating strings
  • Constructor Details

    • StringUtils

      public StringUtils()
  • Method Details

    • replaceLast

      public static String replaceLast(String str, String target, String replacement)
      Replaces the last occurrence of the target in a string.
      Parameters:
      str - input String
      target - target to be replaced
      replacement - replacement String
      Returns:
      modified String
    • className

      public static <T> String className(Class<T> aClass)
      Type Parameters:
      T - type of the class
      Parameters:
      aClass - class
      Returns:
      String representation of the class in ClassName.class format
    • typeName

      public static String typeName(Type type)
      Parameters:
      type - type
      Returns:
      String representation of the type in ClassName.class format
    • constructorName

      public static <T> String constructorName(Constructor<T> constructor)
      Type Parameters:
      T - type of the constructor
      Parameters:
      constructor - constructor
      Returns:
      String representation of the constructor in ClassName(Param1.class,Param2.class) format
    • capitalize

      public static String capitalize(String str)
      Parameters:
      str - String to be capitalized
      Returns:
      capitalized String
    • joining

      public static String joining(Collection<? extends CharSequence> elements, String separator, String lastSeparator)
      Parameters:
      elements - CharSequence elements to be joined
      separator - separator to be used
      lastSeparator - separator to be used before the last element, or null if the normal separator should be used instead
      Returns:
      String of the elements joined together