Enum ServerCallSignal

    • Enum Constant Detail

      • NO_SERVER_CALL

        public static final ServerCallSignal NO_SERVER_CALL
        No server call from this line
      • SERVER_CALL

        public static final ServerCallSignal SERVER_CALL
        Server was called in function called from this line (1 level of nesting)
      • INTERNAL_SERVER_CALL

        public static final ServerCallSignal INTERNAL_SERVER_CALL
        Server was called in function called from this line (2+ levels of nesting)
    • Method Detail

      • values

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

        public static ServerCallSignal 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
      • getValue

        public int getValue()
        Gets value used to sort results table.
        Returns:
        Value associated with this result's server call signal. May be 1, 2 or 3.