Enum Class Jurisdiction

java.lang.Object
java.lang.Enum<Jurisdiction>
edu.suffolk.litlab.efsp.Jurisdiction
All Implemented Interfaces:
Serializable, Comparable<Jurisdiction>, Constable

public enum Jurisdiction extends Enum<Jurisdiction>
The jurisdictions (states) that our code works in and that we support. Even though all possible jurisdictions might be listed here, only those set to the TYLER_JURISDICTIONS env var are supported at runtime.

At the moment, each jurisdiction is uniquely mapped to a single API and Vendor of that API (i.e. ECF, and Tyler). This is for when we expand to having multiple APIs (i.e. ECF v4 and ECF v5) and multiple vendors(Tyler and SoftImage).

  • Enum Constant Details

  • Method Details

    • values

      public static Jurisdiction[] 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 Jurisdiction 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
    • getName

      public String getName()
    • getVendor

      public Jurisdiction.Vendor getVendor()
    • getApi

      public Jurisdiction.Api getApi()
    • parse

      public static Jurisdiction parse(String value)