java.lang.Object
java.lang.Enum<TopXFilter.TopFilterMode>
de.uni_mannheim.informatik.dws.melt.matching_jena_matchers.filter.TopXFilter.TopFilterMode
All Implemented Interfaces:
Serializable, Comparable<TopXFilter.TopFilterMode>, java.lang.constant.Constable
Enclosing class:
TopXFilter

public static enum TopXFilter.TopFilterMode extends Enum<TopXFilter.TopFilterMode>
Filter mode.
  • Enum Constant Details

    • SOURCE

      public static final TopXFilter.TopFilterMode SOURCE
      Keep the top X correspondences for the source.
    • TARGET

      public static final TopXFilter.TopFilterMode TARGET
      Keep the top X correspondences for the target.
    • SOURCE_AND_TARGET

      public static final TopXFilter.TopFilterMode SOURCE_AND_TARGET
      Keep the top X correspondences for the source and for the target. Note that this may lead to more than X correspondences for a single source/target element in some cases.
    • SMALLEST

      public static final TopXFilter.TopFilterMode SMALLEST
      Keep the top X correspondences for the smaller side in the alignment.
    • LARGEST

      public static final TopXFilter.TopFilterMode LARGEST
      Keep the top X correspondences for the larger side in the alignment.
  • Constructor Details

    • TopFilterMode

      private TopFilterMode()
  • Method Details

    • values

      public static TopXFilter.TopFilterMode[] 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 TopXFilter.TopFilterMode 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