org.apache.accumulo.core.iterators
Class SortedKeyIterator
java.lang.Object
org.apache.accumulo.core.iterators.WrappingIterator
org.apache.accumulo.core.iterators.SortedKeyIterator
- All Implemented Interfaces:
- OptionDescriber, SortedKeyValueIterator<Key,Value>
public class SortedKeyIterator
- extends WrappingIterator
- implements OptionDescriber
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SortedKeyIterator
public SortedKeyIterator()
SortedKeyIterator
public SortedKeyIterator(SortedKeyIterator other,
IteratorEnvironment env)
deepCopy
public SortedKeyValueIterator<Key,Value> deepCopy(IteratorEnvironment env)
- Description copied from interface:
SortedKeyValueIterator
- Creates a deep copy of this iterator as though seek had not yet been called. init should be called on an iterator before deepCopy is called. init should
not need to be called on the copy that is returned by deepCopy; that is, when necessary init should be called in the deepCopy method on the iterator it
returns. The behavior is unspecified if init is called after deepCopy either on the original or the copy.
- Specified by:
deepCopy
in interface SortedKeyValueIterator<Key,Value>
- Overrides:
deepCopy
in class WrappingIterator
- Parameters:
env
- IteratorEnvironment environment in which iterator is being run.
- Returns:
- SortedKeyValueIterator a copy of this iterator (with the same source and settings).
getTopValue
public Value getTopValue()
- Description copied from interface:
SortedKeyValueIterator
- Returns top value. Can be called 0 or more times without affecting behavior of next() or hasTop().
- Specified by:
getTopValue
in interface SortedKeyValueIterator<Key,Value>
- Overrides:
getTopValue
in class WrappingIterator
- Returns:
- V
describeOptions
public OptionDescriber.IteratorOptions describeOptions()
- Description copied from interface:
OptionDescriber
- Gets an iterator options object that contains information needed to configure this iterator. This object will be used by the accumulo shell to prompt the
user to input the appropriate information.
- Specified by:
describeOptions
in interface OptionDescriber
- Returns:
- an iterator options object
validateOptions
public boolean validateOptions(Map<String,String> options)
- Description copied from interface:
OptionDescriber
- Check to see if an options map contains all options required by an iterator and that the option values are in the expected formats.
- Specified by:
validateOptions
in interface OptionDescriber
- Parameters:
options
- a map of option names to option values
- Returns:
- true if options are valid, false otherwise (IllegalArgumentException preferred)
Copyright © 2015 Apache Accumulo Project. All rights reserved.