Enum DefaultViewMode
- java.lang.Object
-
- java.lang.Enum<DefaultViewMode>
-
- com.orchestranetworks.schema.dynamic.DefaultViewMode
-
- All Implemented Interfaces:
Serializable,Comparable<DefaultViewMode>
public enum DefaultViewMode extends Enum<DefaultViewMode>
List of default view modes used to define how a group or association is displayed.- Since:
- 6.1
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DefaultViewModevalueOf(String name)Returns the enum constant of this type with the specified name.static DefaultViewMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEFAULT
public static final DefaultViewMode DEFAULT
-
TAB
public static final DefaultViewMode TAB
-
COLLAPSED
public static final DefaultViewMode COLLAPSED
-
EXPANDED
public static final DefaultViewMode EXPANDED
-
LINK
public static final DefaultViewMode LINK
-
INLINE
public static final DefaultViewMode INLINE
-
-
Method Detail
-
values
public static DefaultViewMode[] 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 (DefaultViewMode c : DefaultViewMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DefaultViewMode 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
-
-