当前位置: 首页>>代码示例>>Java>>正文


Java NavigableSet.first方法代码示例

本文整理汇总了Java中java.util.NavigableSet.first方法的典型用法代码示例。如果您正苦于以下问题:Java NavigableSet.first方法的具体用法?Java NavigableSet.first怎么用?Java NavigableSet.first使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.util.NavigableSet的用法示例。


在下文中一共展示了NavigableSet.first方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getPriceLimitedOrders

import java.util.NavigableSet; //导入方法依赖的package包/类
/**
 * Return a copy of the orders, limited by price
 *
 * @param limitPercent how many percent away from the best price the
 * threshold will be.
 * @param ascending when true, lowest prices are included (asks). When
 * false, highest prices are included (bids).
 * @return
 */
public Book getPriceLimitedOrders(double limitPercent, boolean ascending) {
    Book b = new Book();
    if (orders.isEmpty()) {
        return b;
    }

    // Get the best price and calculate threshold
    NavigableSet<Decimal> ns = ascending ? orders.navigableKeySet()
            : orders.descendingKeySet();
    Decimal bestPrice = ns.first();
    double limit = (ascending ? 1 : -1) * limitPercent;
    Decimal threshold = getPriceThreshold(bestPrice, limit);

    for (Decimal price : ns) {
        if ((ascending && price.isGreaterThan(threshold))
                || (!ascending && price.isSmallerThan(threshold))) {
            // Threshold reached
            break;
        }
        b.add(orders.get(price), false);
    }

    return b;
}
 
开发者ID:prog-fun,项目名称:exchange-apis,代码行数:34,代码来源:Book.java

示例2: getFirstOrder

import java.util.NavigableSet; //导入方法依赖的package包/类
/**
 * Get the first order
 *
 * @param ascending when true - return order with the lowest price,
 * otherwise return order with the highest price
 * @return
 */
public Order getFirstOrder(boolean ascending) {
    if (orders.isEmpty()) {
        return null;
    }
    NavigableSet<Decimal> ns = ascending ? orders.navigableKeySet()
            : orders.descendingKeySet();
    Decimal bestPrice = ns.first();
    return getOrderForPrice(bestPrice);
}
 
开发者ID:prog-fun,项目名称:exchange-apis,代码行数:17,代码来源:Book.java

示例3: ParentChildFilteredTermsEnum

import java.util.NavigableSet; //导入方法依赖的package包/类
ParentChildFilteredTermsEnum(TermsEnum tenum, NavigableSet<BytesRef> parentTypes) {
    super(tenum, true);
    this.parentTypes = parentTypes;
    this.seekTerm = parentTypes.isEmpty() ? null : parentTypes.first();
}
 
开发者ID:baidu,项目名称:Elasticsearch,代码行数:6,代码来源:ParentChildFilteredTermsEnum.java

示例4: ScanQueryMatcher

import java.util.NavigableSet; //导入方法依赖的package包/类
/**
 * Construct a QueryMatcher for a scan
 * @param scan
 * @param scanInfo The store's immutable scan info
 * @param columns
 * @param scanType Type of the scan
 * @param earliestPutTs Earliest put seen in any of the store files.
 * @param oldestUnexpiredTS the oldest timestamp we are interested in,
 *  based on TTL
 * @param regionCoprocessorHost 
 * @throws IOException 
 */
public ScanQueryMatcher(Scan scan, ScanInfo scanInfo, NavigableSet<byte[]> columns,
    ScanType scanType, long readPointToUse, long earliestPutTs, long oldestUnexpiredTS,
    long now, RegionCoprocessorHost regionCoprocessorHost) throws IOException {
  TimeRange timeRange = scan.getColumnFamilyTimeRange().get(scanInfo.getFamily());
  if (timeRange == null) {
    this.tr = scan.getTimeRange();
  } else {
    this.tr = timeRange;
  }
  this.rowComparator = scanInfo.getComparator();
  this.regionCoprocessorHost = regionCoprocessorHost;
  this.deletes =  instantiateDeleteTracker();
  this.stopRow = scan.getStopRow();
  this.startKey = KeyValueUtil.createFirstDeleteFamilyOnRow(scan.getStartRow(),
      scanInfo.getFamily());
  this.filter = scan.getFilter();
  this.earliestPutTs = earliestPutTs;
  this.oldestUnexpiredTS = oldestUnexpiredTS;
  this.now = now;

  this.maxReadPointToTrackVersions = readPointToUse;
  this.timeToPurgeDeletes = scanInfo.getTimeToPurgeDeletes();
  this.ttl = oldestUnexpiredTS;

  /* how to deal with deletes */
  this.isUserScan = scanType == ScanType.USER_SCAN;
  // keep deleted cells: if compaction or raw scan
  this.keepDeletedCells = scan.isRaw() ? KeepDeletedCells.TRUE :
    isUserScan ? KeepDeletedCells.FALSE : scanInfo.getKeepDeletedCells();
  // retain deletes: if minor compaction or raw scanisDone
  this.retainDeletesInOutput = scanType == ScanType.COMPACT_RETAIN_DELETES || scan.isRaw();
  // seePastDeleteMarker: user initiated scans
  this.seePastDeleteMarkers =
      scanInfo.getKeepDeletedCells() != KeepDeletedCells.FALSE && isUserScan;

  int maxVersions =
      scan.isRaw() ? scan.getMaxVersions() : Math.min(scan.getMaxVersions(),
        scanInfo.getMaxVersions());

  // Single branch to deal with two types of reads (columns vs all in family)
  if (columns == null || columns.size() == 0) {
    // there is always a null column in the wildcard column query.
    hasNullColumn = true;

    // use a specialized scan for wildcard column tracker.
    this.columns = new ScanWildcardColumnTracker(
        scanInfo.getMinVersions(), maxVersions, oldestUnexpiredTS);
  } else {
    // whether there is null column in the explicit column query
    hasNullColumn = (columns.first().length == 0);

    // We can share the ExplicitColumnTracker, diff is we reset
    // between rows, not between storefiles.
    this.columns = new ExplicitColumnTracker(columns, scanInfo.getMinVersions(), maxVersions,
        oldestUnexpiredTS);
  }
  this.isReversed = scan.isReversed();
}
 
开发者ID:fengchen8086,项目名称:ditb,代码行数:71,代码来源:ScanQueryMatcher.java


注:本文中的java.util.NavigableSet.first方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。