Enum Class URIPattern.Inclusion

java.lang.Object
java.lang.Enum<URIPattern.Inclusion>
io.inverno.mod.base.net.URIPattern.Inclusion
All Implemented Interfaces:
Serializable, Comparable<URIPattern.Inclusion>, Constable
Enclosing interface:
URIPattern

public static enum URIPattern.Inclusion extends Enum<URIPattern.Inclusion>

Describes the inclusion state of a URI pattern in another URI pattern.

Since:
1.3
Author:
Jeremy Kuhn
  • Enum Constant Details

    • INCLUDED

      public static final URIPattern.Inclusion INCLUDED
      One URI pattern is included in another URI pattern.
    • DISJOINT

      public static final URIPattern.Inclusion DISJOINT
      The sets of URIs matched by the URI patterns are disjoint.
    • INDETERMINATE

      public static final URIPattern.Inclusion INDETERMINATE
      It wasn't possible to determine with certainty whether a URI pattern is included into another.
  • Method Details

    • values

      public static URIPattern.Inclusion[] 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 URIPattern.Inclusion 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