示例#1
0
 public Object get(BufferWrapper bufferWrapper, int index)
 {
     return(bufferWrapper.getInt(index));
 }
示例#2
0
 public bool hasValue(BufferWrapper bufferWrapper, int index)
 {
     // Scalar ints are null when equal to "no value" 32 bit pattern.
     return(!isNoValueInt(bufferWrapper.getInt(index)));
 }
示例#3
0
 public bool hasValue(BufferWrapper bufferWrapper, int index)
 {
     // Scalar shorts are null when equal to "no value" 16 bit pattern.
     return(!isNoValueShort((short)bufferWrapper.getInt(index)));
 }