Enum Class PathWildCard

java.lang.Object
java.lang.Enum<PathWildCard>
uk.org.webcompere.modelassert.json.PathWildCard
All Implemented Interfaces:
Serializable, Comparable<PathWildCard>, Constable

public enum PathWildCard extends Enum<PathWildCard>
  • Enum Constant Details

    • ANY

      public static final PathWildCard ANY
      Can be replaced by any single node in the tree - a field or array index
    • ANY_SUBTREE

      public static final PathWildCard ANY_SUBTREE
      Can be replaced by any amount of subtree (0 - n) in the path
  • Method Details

    • values

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

      public static PathWildCard valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null