Enum Refresher

  • All Implemented Interfaces:
    Serializable, Comparable<Refresher>

    public enum Refresher
    extends Enum<Refresher>
    A simplified way of specifying who will be the session refresher for a dialog. Will be converted to the appropriate "refresher=uac" or "refresher=uas" value when a session refresh request or response is sent.
    • Enum Constant Detail

      • LOCAL

        public static final Refresher LOCAL
        I am the refresher
      • REMOTE

        public static final Refresher REMOTE
        The other party is the refresher
      • NONE

        public static final Refresher NONE
        No refresher specified
    • Method Detail

      • values

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

        public static Refresher 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
      • isLocal

        public boolean isLocal()
      • isRemote

        public boolean isRemote()
      • fromInt

        public static Refresher fromInt​(int v)