Enum Class AccessorStyle

java.lang.Object
java.lang.Enum<AccessorStyle>
com.espertech.esper.common.client.util.AccessorStyle
All Implemented Interfaces:
Serializable, Comparable<AccessorStyle>, Constable

public enum AccessorStyle extends Enum<AccessorStyle>
Accessor style defines the methods of a class that are automatically exposed via event property.
  • Enum Constant Details

    • JAVABEAN

      public static final AccessorStyle JAVABEAN
      Expose JavaBean-style getter methods only, plus explicitly configured properties.
    • EXPLICIT

      public static final AccessorStyle EXPLICIT
      Expose only the explicitly configured methods and public members as event properties.
    • PUBLIC

      public static final AccessorStyle PUBLIC
      Expose all public methods and public members as event properties, plus explicitly configured properties.
  • Method Details

    • values

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