java.lang.Object
java.lang.Enum<StringOperations.AbbreviationHandler>
de.uni_mannheim.informatik.dws.melt.matching_jena_matchers.external.services.stringOperations.StringOperations.AbbreviationHandler
All Implemented Interfaces:
Serializable, Comparable<StringOperations.AbbreviationHandler>, java.lang.constant.Constable
Enclosing class:
StringOperations

public static enum StringOperations.AbbreviationHandler extends Enum<StringOperations.AbbreviationHandler>
Enum which indicates how shortcuts in camel case are handeled. Example: "IsIFRSHoldingCategory"

1) LOWER_CASE_FOLLOWS_ABBREVIATION → {"Is", "IFRSH", "olding", "Category"}

2) UPPER_CASE_FOLLOWS_ABBREVIATION → {"Is", "IFRS", "Holding", "Category"}

3) CONSIDER_ALL → {"Is", "IFRS", "Holding", "Category", "olding", "IFRSH"}

  • Enum Constant Details

  • Constructor Details

    • AbbreviationHandler

      private AbbreviationHandler()
  • Method Details

    • values

      public static StringOperations.AbbreviationHandler[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static StringOperations.AbbreviationHandler valueOf(String name)
      Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null