Enum WritabilityMode

    • Enum Constant Detail

      • ENABLED

        public static final WritabilityMode ENABLED
        Indicates that all write operations should be allowed.
      • DISABLED

        public static final WritabilityMode DISABLED
        Indicates that all write operations should be rejected.
      • INTERNAL_ONLY

        public static final WritabilityMode INTERNAL_ONLY
        Indicates that write operations from clients will be rejected, but internal operations and updates through synchronization will be allowed.
    • Method Detail

      • values

        public static WritabilityMode[] 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 (WritabilityMode c : WritabilityMode.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static WritabilityMode 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
      • modeForName

        public static WritabilityMode modeForName​(String modeName)
        Retrieves the writability mode for the specified name.
        Parameters:
        modeName - The name of the writability mode to retrieve.
        Returns:
        The requested writability mode, or null if the provided value is not the name of a valid mode.
      • toString

        public String toString()
        Retrieves a string representation of this writability mode.
        Overrides:
        toString in class Enum<WritabilityMode>
        Returns:
        A string representation of this writability mode.