public static enum ScannerContext.LimitScope extends Enum<ScannerContext.LimitScope>
| 枚举常量和说明 |
|---|
BETWEEN_CELLS
Enforcing a limit between cells means that the limit will be considered after each full cell
has been retrieved
|
BETWEEN_ROWS
Enforcing a limit between rows means that the limit will not be considered until all the
cells for a particular row have been retrieved
|
| 限定符和类型 | 方法和说明 |
|---|---|
static ScannerContext.LimitScope |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static ScannerContext.LimitScope[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final ScannerContext.LimitScope BETWEEN_ROWS
public static final ScannerContext.LimitScope BETWEEN_CELLS
public static ScannerContext.LimitScope[] values()
for (ScannerContext.LimitScope c : ScannerContext.LimitScope.values()) System.out.println(c);
public static ScannerContext.LimitScope valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2007–2019 The Apache Software Foundation. All rights reserved.