Lines Matching refs:headerValue
283 * <code>headerValue</code> then the header will be removed from the set of
286 * @param headerValue the value of the header identifier
289 * type of <code>headerValue</code> is not the correct Java type as
292 public void setHeader(int headerID, Object headerValue) {
297 if (!(headerValue instanceof Long)) {
298 if (headerValue == null) {
304 temp = ((Long)headerValue).longValue();
308 mCount = (Long)headerValue;
311 if ((headerValue != null) && (!(headerValue instanceof String))) {
315 mName = (String)headerValue;
318 if ((headerValue != null) && (!(headerValue instanceof String))) {
321 mType = (String)headerValue;
324 if (!(headerValue instanceof Long)) {
325 if (headerValue == null) {
331 temp = ((Long)headerValue).longValue();
335 mLength = (Long)headerValue;
338 if ((headerValue != null) && (!(headerValue instanceof Calendar))) {
341 mIsoTime = (Calendar)headerValue;
344 if ((headerValue != null) && (!(headerValue instanceof Calendar))) {
347 mByteTime = (Calendar)headerValue;
350 if ((headerValue != null) && (!(headerValue instanceof String))) {
353 mDescription = (String)headerValue;
356 if (headerValue == null) {
359 if (!(headerValue instanceof byte[])) {
362 mTarget = new byte[((byte[])headerValue).length];
363 System.arraycopy(headerValue, 0, mTarget, 0, mTarget.length);
368 if (headerValue == null) {
371 if (!(headerValue instanceof byte[])) {
374 mHttpHeader = new byte[((byte[])headerValue).length];
375 System.arraycopy(headerValue, 0, mHttpHeader, 0, mHttpHeader.length);
380 if (headerValue == null) {
383 if (!(headerValue instanceof byte[])) {
386 mWho = new byte[((byte[])headerValue).length];
387 System.arraycopy(headerValue, 0, mWho, 0, mWho.length);
392 if (headerValue == null) {
395 if (!(headerValue instanceof byte[])) {
398 mObjectClass = new byte[((byte[])headerValue).length];
399 System.arraycopy(headerValue, 0, mObjectClass, 0, mObjectClass.length);
404 if (headerValue == null) {
407 if (!(headerValue instanceof byte[])) {
411 mAppParam = new byte[((byte[])headerValue).length];
412 System.arraycopy(headerValue, 0, mAppParam, 0, mAppParam.length);
417 if (headerValue == null) {
420 if (!(headerValue instanceof Byte)) {
424 mSingleResponseMode = (Byte)headerValue;
429 if (headerValue == null) {
432 if (!(headerValue instanceof Byte)) {
436 mSrmParam = (Byte)headerValue;
443 if ((headerValue != null) && (!(headerValue instanceof String))) {
447 mUnicodeUserDefined[headerID - 0x30] = (String)headerValue;
454 if (headerValue == null) {
457 if (!(headerValue instanceof byte[])) {
461 mSequenceUserDefined[headerID - 0x70] = new byte[((byte[])headerValue).length];
462 System.arraycopy(headerValue, 0, mSequenceUserDefined[headerID - 0x70],
470 if ((headerValue != null) && (!(headerValue instanceof Byte))) {
473 mByteUserDefined[headerID - 0xB0] = (Byte)headerValue;
480 if (!(headerValue instanceof Long)) {
481 if (headerValue == null) {
487 temp = ((Long)headerValue).longValue();
492 mIntegerUserDefined[headerID - 0xF0] = (Long)headerValue;