Enum DataStoreType

  • All Implemented Interfaces:
    Serializable, Comparable<DataStoreType>

    public enum DataStoreType
    extends Enum<DataStoreType>
    Used to indicate whether the data store is shared (e.g. a typical PostgreSQL database shared across multiple clients) or not shared, such as an in-memory H2 database that is only accessible from within a single JVM.
    • Enum Constant Detail

      • SHARED

        public static final DataStoreType SHARED
        Indicates the application error data store is shared across multiple clients, and any of them can be used to create or find errors.
      • NOT_SHARED

        public static final DataStoreType NOT_SHARED
        Indicates the application error data store is not shared and errors will be local to that client, e.g. an error created by one client will never be seen by any other client.
    • Method Detail

      • values

        public static DataStoreType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DataStoreType c : DataStoreType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DataStoreType 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
      • shared

        public boolean shared()
        Returns:
        true if this data store type is shared, otherwise false