Enum ConditionCode

    • Enum Constant Detail

      • ACK_LIMIT_REACHED

        public static final ConditionCode ACK_LIMIT_REACHED
      • KEEP_ALIVE_LIMIT_REACHED

        public static final ConditionCode KEEP_ALIVE_LIMIT_REACHED
      • INVALID_TRANSMISSION_MODE

        public static final ConditionCode INVALID_TRANSMISSION_MODE
      • FILESTORE_REJECTION

        public static final ConditionCode FILESTORE_REJECTION
      • FILE_CHECKSUM_FAILURE

        public static final ConditionCode FILE_CHECKSUM_FAILURE
      • FILE_SIZE_ERROR

        public static final ConditionCode FILE_SIZE_ERROR
      • NAK_LIMIT_REACHED

        public static final ConditionCode NAK_LIMIT_REACHED
      • INACTIVITY_DETECTED

        public static final ConditionCode INACTIVITY_DETECTED
      • INVALID_FILE_STRUCTURE

        public static final ConditionCode INVALID_FILE_STRUCTURE
      • CHECK_LIMIT_REACHED

        public static final ConditionCode CHECK_LIMIT_REACHED
      • UNSUPPORTED_CHECKSUM_TYPE

        public static final ConditionCode UNSUPPORTED_CHECKSUM_TYPE
      • SUSPEND_REQUEST_RECEIVED

        public static final ConditionCode SUSPEND_REQUEST_RECEIVED
      • CANCEL_REQUEST_RECEIVED

        public static final ConditionCode CANCEL_REQUEST_RECEIVED
    • Method Detail

      • values

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

        public static ConditionCode 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
      • getCode

        public byte getCode()
      • readConditionCode

        public static ConditionCode readConditionCode​(byte b)
      • writeAsByteToBuffer

        public void writeAsByteToBuffer​(ByteBuffer buffer)