public enum ScreenRecordTypeValues extends java.lang.Enum<ScreenRecordTypeValues>
List of SQL Record Type if a SQL database is called in the -CS Lines
Modifier and Type | Method and Description |
---|---|
static ScreenRecordTypeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScreenRecordTypeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScreenRecordTypeValues _T
Table
public static final ScreenRecordTypeValues _V
View
public static final ScreenRecordTypeValues NONE
No specific table or view.
public static ScreenRecordTypeValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static ScreenRecordTypeValues[] values()
for (ScreenRecordTypeValues c : ScreenRecordTypeValues.values()) System.out.println(c);