Constructs a new SnmpOid
from the specified
component array, starting at given position.
final int subLength = oid.length - start;
final long[] subOid = new long[subLength];
java.lang.System.arraycopy(oid, start, subOid, 0, subLength) ;
components = subOid;
componentCount = subLength;