Module net.sf.jsqlparser
Package net.sf.jsqlparser.statement.show
Enum ShowTablesStatement.Modifiers
- java.lang.Object
-
- java.lang.Enum<ShowTablesStatement.Modifiers>
-
- net.sf.jsqlparser.statement.show.ShowTablesStatement.Modifiers
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ShowTablesStatement.Modifiers>
- Enclosing class:
- ShowTablesStatement
public static enum ShowTablesStatement.Modifiers extends java.lang.Enum<ShowTablesStatement.Modifiers>
-
-
Constructor Summary
Constructors Modifier Constructor Description private
Modifiers()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ShowTablesStatement.Modifiers
from(java.lang.String modifier)
static ShowTablesStatement.Modifiers
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ShowTablesStatement.Modifiers[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXTENDED
public static final ShowTablesStatement.Modifiers EXTENDED
-
FULL
public static final ShowTablesStatement.Modifiers FULL
-
-
Method Detail
-
values
public static ShowTablesStatement.Modifiers[] 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 (ShowTablesStatement.Modifiers c : ShowTablesStatement.Modifiers.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ShowTablesStatement.Modifiers 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
-
from
public static ShowTablesStatement.Modifiers from(java.lang.String modifier)
-
-