Enum DeclarationFinder.VisibilityType
- java.lang.Object
-
- java.lang.Enum<DeclarationFinder.VisibilityType>
-
- net.ssehub.easy.varModel.model.filter.DeclarationFinder.VisibilityType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<DeclarationFinder.VisibilityType>
- Enclosing class:
- DeclarationFinder
public static enum DeclarationFinder.VisibilityType extends java.lang.Enum<DeclarationFinder.VisibilityType>
Specifies which kind of found declarations shall by returned.- Author:
- El-Sharkawy
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLONLY_EXPORTEDONLY_HIDDEN
-
Constructor Summary
Constructors Modifier Constructor Description privateVisibilityType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DeclarationFinder.VisibilityTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DeclarationFinder.VisibilityType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ONLY_EXPORTED
public static final DeclarationFinder.VisibilityType ONLY_EXPORTED
-
ONLY_HIDDEN
public static final DeclarationFinder.VisibilityType ONLY_HIDDEN
-
ALL
public static final DeclarationFinder.VisibilityType ALL
-
-
Method Detail
-
values
public static DeclarationFinder.VisibilityType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DeclarationFinder.VisibilityType c : DeclarationFinder.VisibilityType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeclarationFinder.VisibilityType valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-