Package com.structurizr.io.plantuml
Enum C4PlantUMLWriter.Directions
- java.lang.Object
-
- java.lang.Enum<C4PlantUMLWriter.Directions>
-
- com.structurizr.io.plantuml.C4PlantUMLWriter.Directions
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<C4PlantUMLWriter.Directions>
- Enclosing class:
- C4PlantUMLWriter
public static enum C4PlantUMLWriter.Directions extends java.lang.Enum<C4PlantUMLWriter.Directions>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringforMacro()static C4PlantUMLWriter.DirectionsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static C4PlantUMLWriter.Directions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Up
public static final C4PlantUMLWriter.Directions Up
-
Down
public static final C4PlantUMLWriter.Directions Down
-
Right
public static final C4PlantUMLWriter.Directions Right
-
Left
public static final C4PlantUMLWriter.Directions Left
-
-
Method Detail
-
values
public static C4PlantUMLWriter.Directions[] 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 (C4PlantUMLWriter.Directions c : C4PlantUMLWriter.Directions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static C4PlantUMLWriter.Directions 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
-
forMacro
public java.lang.String forMacro()
-
-