Enum Class AbstractDistributionsComponent.State
java.lang.Object
java.lang.Enum<AbstractDistributionsComponent.State>
com.macrofocus.high_d.distributions.AbstractDistributionsComponent.State
- All Implemented Interfaces:
Serializable
,Comparable<AbstractDistributionsComponent.State>
,Constable
protected static enum AbstractDistributionsComponent.State
extends Enum<AbstractDistributionsComponent.State>
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNo bar has been selected and there are elements of this bar that haven't been filtered out.All the elements of this bar are filtered out and the user is not allowed to activate it.It is active and the mouse is over it.This filter has another bar that is active, making the elements from this bar being filtered out.It is active and has been selected by the user, i.e. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static AbstractDistributionsComponent.State[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
Active
No bar has been selected and there are elements of this bar that haven't been filtered out. -
Probed
It is active and the mouse is over it. -
Selected
It is active and has been selected by the user, i.e. other bars in this filter are filtered out. -
ProbedSelected
-
Selectable
This filter has another bar that is active, making the elements from this bar being filtered out. The user could however activate it by clicking on it. -
ProbedSelectable
-
Inactive
All the elements of this bar are filtered out and the user is not allowed to activate it.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-