Package com.tailf.dp
Class CompletionRangeEnumReply
Object
com.tailf.dp.Completion
com.tailf.dp.CompletionRangeEnumReply
Reply structure container for completion callbacks invoked by a
 tailf:cli-custom-range-enumerator directive.
 This reply class is used to assemble list instance key completions.
- 
Method SummaryModifier and TypeMethodDescriptionvoidaddEntryKeyValues(String[] keyValues) Add keys for a list entry.voidaddEntryKeyValues(List<String> keyList) Add keys for a list entry.Methods inherited from class com.tailf.dp.CompletionnewDefaultReply, newRangeEnumReply, newReply
- 
Method Details- 
addEntryKeyValuesAdd keys for a list entry. The number of keys was specified in the instantiation usingCompletion.newRangeEnumReply(int)The keyValues parameter array length must be of length keySize or an exception is thrown.- Parameters:
- keyValues- String[] of keys for this list entry, must be of keySize length
- Throws:
- DpCallbackException
 
- 
addEntryKeyValuesAdd keys for a list entry. The number of keys was specified in the instantiation usingCompletion.newRangeEnumReply(int)The keyList parameter list size() be of length keySize or an exception is thrown.- Parameters:
- keyList-- List<String>of keys for an entry, must be of size keySize
- Throws:
- DpCallbackException
 
 
-