本文整理匯總了Java中gnu.trove.map.TIntObjectMap.containsKey方法的典型用法代碼示例。如果您正苦於以下問題:Java TIntObjectMap.containsKey方法的具體用法?Java TIntObjectMap.containsKey怎麽用?Java TIntObjectMap.containsKey使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gnu.trove.map.TIntObjectMap
的用法示例。
在下文中一共展示了TIntObjectMap.containsKey方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: equals
import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
/** {@inheritDoc} */
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntObjectMap ) ) {
return false;
}
TIntObjectMap that = ( TIntObjectMap ) other;
if ( that.size() != this.size() ) {
return false;
}
try {
TIntObjectIterator iter = this.iterator();
while ( iter.hasNext() ) {
iter.advance();
int key = iter.key();
Object value = iter.value();
if ( value == null ) {
if ( !( that.get( key ) == null && that.containsKey( key ) ) ) {
return false;
}
} else {
if ( !value.equals( that.get( key ) ) ) {
return false;
}
}
}
} catch ( ClassCastException ex ) {
// unused.
}
return true;
}
示例2: equals
import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntObjectMap ) ) {
return false;
}
TIntObjectMap that = ( TIntObjectMap ) other;
if ( that.size() != this.size() ) {
return false;
}
try {
TIntObjectIterator iter = this.iterator();
while ( iter.hasNext() ) {
iter.advance();
int key = iter.key();
Object value = iter.value();
if ( value == null ) {
if ( !( that.get( key ) == null && that.containsKey( key ) ) ) {
return false;
}
} else {
if ( !value.equals( that.get( key ) ) ) {
return false;
}
}
}
} catch ( ClassCastException ex ) {
// unused.
}
return true;
}
示例3: equals
import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
/** {@inheritDoc} */
@Override
@SuppressWarnings("rawtypes")
public boolean equals( Object other ) {
if ( ! ( other instanceof TIntObjectMap ) ) {
return false;
}
TIntObjectMap that = ( TIntObjectMap ) other;
if ( that.size() != this.size() ) {
return false;
}
try {
TIntObjectIterator iter = this.iterator();
while ( iter.hasNext() ) {
iter.advance();
int key = iter.key();
Object value = iter.value();
if ( value == null ) {
if ( !( that.get( key ) == null && that.containsKey( key ) ) ) {
return false;
}
} else {
if ( !value.equals( that.get( key ) ) ) {
return false;
}
}
}
} catch ( ClassCastException ex ) {
// unused.
}
return true;
}
示例4: encodeHist
import gnu.trove.map.TIntObjectMap; //導入方法依賴的package包/類
private static mt_hist encodeHist(TIntObjectMap<histogram> t_hist, int timestampsSize) {
LOG.log(Level.FINEST, "encoding {0}", TDecorators.wrap(t_hist));
histogram values[] = new histogram[timestampsSize];
int values_len = 0;
for (int i = 0; i < values.length; ++i) {
if (t_hist.containsKey(i))
values[values_len++] = t_hist.get(i);
}
mt_hist result = new mt_hist();
result.presence = createPresenceBitset(t_hist.keySet(), timestampsSize);
result.values = Arrays.copyOf(values, values_len);
return result;
}