Java javax.smartcardio CommandAPDU fields, constructors, methods, implement or subclass

Example usage for Java javax.smartcardio CommandAPDU fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.smartcardio CommandAPDU.

The text is from its open source code.

Constructor

CommandAPDU(byte[] apdu)
Constructs a CommandAPDU from a byte array containing the complete APDU contents (header and body).
CommandAPDU(ByteBuffer apdu)
Creates a CommandAPDU from the ByteBuffer containing the complete APDU contents (header and body).
CommandAPDU(int cla, int ins, int p1, int p2, int ne)
Constructs a CommandAPDU from the four header bytes and the expected response data length.
CommandAPDU(int cla, int ins, int p1, int p2, byte[] data)
Constructs a CommandAPDU from the four header bytes and command data.
CommandAPDU(int cla, int ins, int p1, int p2, byte[] data, int ne)
Constructs a CommandAPDU from the four header bytes, command data, and expected response data length.
CommandAPDU(int cla, int ins, int p1, int p2)
Constructs a CommandAPDU from the four header bytes.
CommandAPDU(int cla, int ins, int p1, int p2, byte[] data, int dataOffset, int dataLength, int ne)
Constructs a CommandAPDU from the four header bytes, command data, and expected response data length.