public class DropUserTypeSpecification extends UserTypeNameSpecification<DropUserTypeSpecification>
DROP TYPE specifications.CqlIdentifier| Constructor and Description |
|---|
DropUserTypeSpecification() |
| Modifier and Type | Method and Description |
|---|---|
static DropUserTypeSpecification |
dropType()
Entry point into the
DropUserTypeSpecification's fluent API to drop a type. |
static DropUserTypeSpecification |
dropType(CqlIdentifier typeName)
Entry point into the
DropUserTypeSpecification's fluent API to drop a type. |
static DropUserTypeSpecification |
dropType(String typeName)
Entry point into the
DropUserTypeSpecification's fluent API to drop a type. |
boolean |
getIfExists() |
DropUserTypeSpecification |
ifExists()
Enables the inclusion of an
IF EXISTS clause. |
DropUserTypeSpecification |
ifExists(boolean ifExists)
Sets the inclusion of an
IF EXISTS clause. |
getName, name, namepublic static DropUserTypeSpecification dropType()
DropUserTypeSpecification's fluent API to drop a type. Convenient if imported
statically.public static DropUserTypeSpecification dropType(String typeName)
DropUserTypeSpecification's fluent API to drop a type. Convenient if imported
statically.typeName - The name of the type to drop.public static DropUserTypeSpecification dropType(CqlIdentifier typeName)
DropUserTypeSpecification's fluent API to drop a type. Convenient if imported
statically.typeName - The name of the type to drop.public DropUserTypeSpecification ifExists()
IF EXISTS clause.DropUserTypeSpecification.public DropUserTypeSpecification ifExists(boolean ifExists)
IF EXISTS clause.ifExists - true to include an IF EXISTS clause, false to omit the
IF NOT EXISTS clause.DropUserTypeSpecification.public boolean getIfExists()
IF EXISTS clause is included.Copyright © 2011–2019 Pivotal Software, Inc.. All rights reserved.