Package org.nfctools.llcp.parameter

Examples of org.nfctools.llcp.parameter.Option


          break;
        case PduConstants.PARAM_RW:
          params.add(new ReceiveWindowSize(pduData[offset + 2] & 0x0F));
          break;
        case PduConstants.PARAM_OPT:
          params.add(new Option(pduData[offset + 2] & 0x01));
          break;

        default:
          throw new IllegalArgumentException("unknown code " + pduData[offset] + " at position " + offset
              + ". [" + NfcUtils.convertBinToASCII(pduData) + "]");
View Full Code Here

TOP

Related Classes of org.nfctools.llcp.parameter.Option

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.