Enum Class PropertyAccess

java.lang.Object
java.lang.Enum<PropertyAccess>
com.inductiveautomation.perspective.common.property.PropertyAccess
All Implemented Interfaces:
Serializable, Comparable<PropertyAccess>, Constable

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

    • PUBLIC

      public static final PropertyAccess PUBLIC
      Property will be synchronized bidirectionally between session and browser
    • PRIVATE

      public static final PropertyAccess PRIVATE
      Property will only exist in session property tree, not in browser. Attempts to write from browser ignored.
    • PROTECTED

      public static final PropertyAccess PROTECTED
      Property will be synchronized from the session to the browser, but writes from browser ignored.
    • SYSTEM

      public static final PropertyAccess SYSTEM
      Property's value is provided by the system. Sync and write behavior is identical to protected
  • Method Details

    • values

      public static PropertyAccess[] 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 PropertyAccess 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