net.sourceforge.plantuml.svek
Enum PackageStyle
java.lang.Object
java.lang.Enum<PackageStyle>
net.sourceforge.plantuml.svek.PackageStyle
- All Implemented Interfaces:
- Serializable, Comparable<PackageStyle>
public enum PackageStyle
- extends Enum<PackageStyle>
FOLDER
public static final PackageStyle FOLDER
RECT
public static final PackageStyle RECT
NODE
public static final PackageStyle NODE
FRAME
public static final PackageStyle FRAME
CLOUD
public static final PackageStyle CLOUD
DATABASE
public static final PackageStyle DATABASE
values
public static PackageStyle[] 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 (PackageStyle c : PackageStyle.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static PackageStyle 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 name
NullPointerException
- if the argument is null
fromString
public static PackageStyle fromString(String value)
Copyright © 2012. All Rights Reserved.