本文整理汇总了Java中gnu.trove.map.TIntByteMap.get方法的典型用法代码示例。如果您正苦于以下问题:Java TIntByteMap.get方法的具体用法?Java TIntByteMap.get怎么用?Java TIntByteMap.get使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gnu.trove.map.TIntByteMap
的用法示例。
在下文中一共展示了TIntByteMap.get方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: equals
import gnu.trove.map.TIntByteMap; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntByteMap ) ) {
return false;
}
TIntByteMap that = ( TIntByteMap ) other;
if ( that.size() != this.size() ) {
return false;
}
byte[] values = _values;
byte[] states = _states;
byte this_no_entry_value = getNoEntryValue();
byte that_no_entry_value = that.getNoEntryValue();
for ( int i = values.length; i-- > 0; ) {
if ( states[i] == FULL ) {
int key = _set[i];
byte that_value = that.get( key );
byte this_value = values[i];
if ( ( this_value != that_value ) &&
( this_value != this_no_entry_value ) &&
( that_value != that_no_entry_value ) ) {
return false;
}
}
}
return true;
}
示例2: equals
import gnu.trove.map.TIntByteMap; //导入方法依赖的package包/类
/** {@inheritDoc} */
@Override
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntByteMap ) ) {
return false;
}
TIntByteMap that = ( TIntByteMap ) other;
if ( that.size() != this.size() ) {
return false;
}
TByteOffheapArray values = _values;
TByteOffheapArray states = _states;
byte this_no_entry_value = getNoEntryValue();
byte that_no_entry_value = that.getNoEntryValue();
for ( int i = capacity(); i-- > 0; ) {
if ( states.get( i ) == FULL ) {
int key = _set.get( i );
byte that_value = that.get( key );
byte this_value = values.get( i );
if ( ( this_value != that_value ) &&
( this_value != this_no_entry_value ) &&
( that_value != that_no_entry_value ) ) {
return false;
}
}
}
return true;
}
示例3: encodeBool
import gnu.trove.map.TIntByteMap; //导入方法依赖的package包/类
private static mt_bool encodeBool(TIntByteMap t_bool, int timestampsSize) {
LOG.log(Level.FINEST, "encoding {0}", TDecorators.wrap(t_bool));
boolean values[] = new boolean[timestampsSize];
int values_len = 0;
for (int i = 0; i < values.length; ++i) {
if (t_bool.containsKey(i))
values[values_len++] = t_bool.get(i) != 0;
}
mt_bool result = new mt_bool();
result.presence = createPresenceBitset(t_bool.keySet(), timestampsSize);
result.values = bitset(Arrays.copyOf(values, values_len));
return result;
}
示例4: get
import gnu.trove.map.TIntByteMap; //导入方法依赖的package包/类
/**
* Gets the value at row i, column j; not yet set values are 0
* @param i
* @param j
* @return
*/
public Byte get(int i, int j){
TIntByteMap row = matrix.get(i);
if (row != null){
byte value = row.get(j);
return value;
}
// System.out.println("get not ex");
return 0;
}
示例5: getBool
import gnu.trove.map.TIntByteMap; //导入方法依赖的package包/类
/**
* Gets the value at row i, column j as boolean
* @param i
* @param j
* @return
*/
public boolean getBool(int i, int j){
TIntByteMap row = matrix.get(i);
if (row != null){
byte value = row.get(j);
return value!=0;
}
// System.out.println("get not ex");
return false;
}