Enum CompletionHandler.CompletionStatus
java.lang.Object
java.lang.Enum<CompletionHandler.CompletionStatus>
org.aesh.readline.completion.CompletionHandler.CompletionStatus
- All Implemented Interfaces:
Serializable, Comparable<CompletionHandler.CompletionStatus>, java.lang.constant.Constable
- Enclosing class:
CompletionHandler<C extends CompleteOperation>
public static enum CompletionHandler.CompletionStatus
extends Enum<CompletionHandler.CompletionStatus>
Represents the current status of the completion process.
- Author:
- Ståle W. Pedersen
-
Nested Class Summary
Nested classes/interfaces inherited from class Enum
Enum.EnumDesc<E> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWaiting for user confirmation to display all completionsCompletion process is finished -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.static CompletionHandler.CompletionStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ASKING_FOR_COMPLETIONS
Waiting for user confirmation to display all completions -
COMPLETE
Completion process is finished
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-