Package adalid.core.enums
Enum Class VirtualEntityType
- All Implemented Interfaces:
Serializable,Comparable<VirtualEntityType>,Constable
- Author:
- Jorge Campins
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionA table hierarquical line, up to its root.Any other kind of view, defined by a sql query.A single table view.A table joined with all its directly or indirectly linked tables.A table joined with all its directly linked tables.A table joined with all its directly linked tables plus the tables in its hierarquical line.A table hierarquical line joined with all tables directly linked to any table of the line. -
Method Summary
Modifier and TypeMethodDescriptionstatic VirtualEntityTypeReturns the enum constant of this class with the specified name.static VirtualEntityType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SELECTION
A single table view. -
LINE
A table hierarquical line, up to its root. -
STAR
A table joined with all its directly linked tables. -
STAR_LINE
A table joined with all its directly linked tables plus the tables in its hierarquical line. -
STARRY_LINE
A table hierarquical line joined with all tables directly linked to any table of the line. -
SNOWFLAKE
A table joined with all its directly or indirectly linked tables. -
QUERY
Any other kind of view, defined by a sql query.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-