Package cdc.graphs
Enum EdgeDirectionMask
- java.lang.Object
-
- java.lang.Enum<EdgeDirectionMask>
-
- cdc.graphs.EdgeDirectionMask
-
- All Implemented Interfaces:
Serializable,Comparable<EdgeDirectionMask>
public enum EdgeDirectionMask extends Enum<EdgeDirectionMask>
Mask of EdgeDirections.Implemented as an enum.
WARNING: Order of declarations matters and must be complaint with EdgeDirection.
- Author:
- Damien Carbonne
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanisEnabled(EdgeDirection value)EdgeDirectionMasksetEnabled(EdgeDirection value, boolean enabled)static EdgeDirectionMaskvalueOf(String name)Returns the enum constant of this type with the specified name.static EdgeDirectionMask[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final EdgeDirectionMask NONE
-
OUTGOING
public static final EdgeDirectionMask OUTGOING
-
INGOING
public static final EdgeDirectionMask INGOING
-
BOTH
public static final EdgeDirectionMask BOTH
-
-
Method Detail
-
values
public static EdgeDirectionMask[] 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 (EdgeDirectionMask c : EdgeDirectionMask.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EdgeDirectionMask valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
isEnabled
public boolean isEnabled(EdgeDirection value)
-
setEnabled
public EdgeDirectionMask setEnabled(EdgeDirection value, boolean enabled)
-
-