Enum HandshakeProtocol

    • Enum Constant Detail

      • NO_ACKNOWLEDGE

        public static final HandshakeProtocol NO_ACKNOWLEDGE
        No CRC error detection and no acknowledge handshake.
      • REQUEST_FOR_ACKNOWLEDGE

        public static final HandshakeProtocol REQUEST_FOR_ACKNOWLEDGE
        No CRC error detection but acknowledge handshake.
    • Method Detail

      • values

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

        public static HandshakeProtocol 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
      • isAcknowledge

        public boolean isAcknowledge()
        Determines whether an acknowledge handshake is to be established upon receival of a transmission.
        Returns:
        True in case of an acknowledge handshake.