Class AlterColumn
- java.lang.Object
-
- io.ebeaninternal.dbmigration.migration.AlterColumn
-
public class AlterColumn extends Object
Java class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="before" type="{http://ebean-orm.github.io/xml/ns/dbmigration}ddl-script" maxOccurs="unbounded" minOccurs="0"/> <element name="after" type="{http://ebean-orm.github.io/xml/ns/dbmigration}ddl-script" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="columnName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="tableName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="withHistory" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="currentType" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="currentDefaultValue" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="notnull" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="currentNotnull" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="comment" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="historyExclude" type="{http://www.w3.org/2001/XMLSchema}boolean" /> <attribute name="checkConstraint" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="checkConstraintName" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="dropCheckConstraint" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="unique" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="uniqueOneToOne" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="dropUnique" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="references" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="foreignKeyName" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="foreignKeyIndex" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="foreignKeyOnDelete" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="foreignKeyOnUpdate" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="dropForeignKey" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="dropForeignKeyIndex" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description AlterColumn()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<DdlScript>getAfter()Gets the value of the after property.List<DdlScript>getBefore()Gets the value of the before property.StringgetCheckConstraint()Gets the value of the checkConstraint property.StringgetCheckConstraintName()Gets the value of the checkConstraintName property.StringgetColumnName()Gets the value of the columnName property.StringgetComment()Gets the value of the comment property.StringgetCurrentDefaultValue()Gets the value of the currentDefaultValue property.StringgetCurrentType()Gets the value of the currentType property.StringgetDefaultValue()Gets the value of the defaultValue property.StringgetDropCheckConstraint()Gets the value of the dropCheckConstraint property.StringgetDropForeignKey()Gets the value of the dropForeignKey property.StringgetDropForeignKeyIndex()Gets the value of the dropForeignKeyIndex property.StringgetDropUnique()Gets the value of the dropUnique property.StringgetForeignKeyIndex()Gets the value of the foreignKeyIndex property.StringgetForeignKeyName()Gets the value of the foreignKeyName property.StringgetForeignKeyOnDelete()Gets the value of the foreignKeyOnDelete property.StringgetForeignKeyOnUpdate()Gets the value of the foreignKeyOnUpdate property.StringgetReferences()Gets the value of the references property.StringgetTableName()Gets the value of the tableName property.StringgetType()Gets the value of the type property.StringgetUnique()Gets the value of the unique property.StringgetUniqueOneToOne()Gets the value of the uniqueOneToOne property.BooleanisCurrentNotnull()Gets the value of the currentNotnull property.BooleanisHistoryExclude()Gets the value of the historyExclude property.BooleanisNotnull()Gets the value of the notnull property.BooleanisWithHistory()Gets the value of the withHistory property.voidsetCheckConstraint(String value)Sets the value of the checkConstraint property.voidsetCheckConstraintName(String value)Sets the value of the checkConstraintName property.voidsetColumnName(String value)Sets the value of the columnName property.voidsetComment(String value)Sets the value of the comment property.voidsetCurrentDefaultValue(String value)Sets the value of the currentDefaultValue property.voidsetCurrentNotnull(Boolean value)Sets the value of the currentNotnull property.voidsetCurrentType(String value)Sets the value of the currentType property.voidsetDefaultValue(String value)Sets the value of the defaultValue property.voidsetDropCheckConstraint(String value)Sets the value of the dropCheckConstraint property.voidsetDropForeignKey(String value)Sets the value of the dropForeignKey property.voidsetDropForeignKeyIndex(String value)Sets the value of the dropForeignKeyIndex property.voidsetDropUnique(String value)Sets the value of the dropUnique property.voidsetForeignKeyIndex(String value)Sets the value of the foreignKeyIndex property.voidsetForeignKeyName(String value)Sets the value of the foreignKeyName property.voidsetForeignKeyOnDelete(String value)Sets the value of the foreignKeyOnDelete property.voidsetForeignKeyOnUpdate(String value)Sets the value of the foreignKeyOnUpdate property.voidsetHistoryExclude(Boolean value)Sets the value of the historyExclude property.voidsetNotnull(Boolean value)Sets the value of the notnull property.voidsetReferences(String value)Sets the value of the references property.voidsetTableName(String value)Sets the value of the tableName property.voidsetType(String value)Sets the value of the type property.voidsetUnique(String value)Sets the value of the unique property.voidsetUniqueOneToOne(String value)Sets the value of the uniqueOneToOne property.voidsetWithHistory(Boolean value)Sets the value of the withHistory property.
-
-
-
Constructor Detail
-
AlterColumn
public AlterColumn()
-
-
Method Detail
-
getBefore
public List<DdlScript> getBefore()
Gets the value of the before property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the before property.For example, to add a new item, do as follows:
getBefore().add(newItem);Objects of the following type(s) are allowed in the list
DdlScript
-
getAfter
public List<DdlScript> getAfter()
Gets the value of the after property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the after property.For example, to add a new item, do as follows:
getAfter().add(newItem);Objects of the following type(s) are allowed in the list
DdlScript
-
getColumnName
public String getColumnName()
Gets the value of the columnName property.- Returns:
- possible object is
String
-
setColumnName
public void setColumnName(String value)
Sets the value of the columnName property.- Parameters:
value- allowed object isString
-
getTableName
public String getTableName()
Gets the value of the tableName property.- Returns:
- possible object is
String
-
setTableName
public void setTableName(String value)
Sets the value of the tableName property.- Parameters:
value- allowed object isString
-
isWithHistory
public Boolean isWithHistory()
Gets the value of the withHistory property.- Returns:
- possible object is
Boolean
-
setWithHistory
public void setWithHistory(Boolean value)
Sets the value of the withHistory property.- Parameters:
value- allowed object isBoolean
-
getType
public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
getCurrentType
public String getCurrentType()
Gets the value of the currentType property.- Returns:
- possible object is
String
-
setCurrentType
public void setCurrentType(String value)
Sets the value of the currentType property.- Parameters:
value- allowed object isString
-
getDefaultValue
public String getDefaultValue()
Gets the value of the defaultValue property.- Returns:
- possible object is
String
-
setDefaultValue
public void setDefaultValue(String value)
Sets the value of the defaultValue property.- Parameters:
value- allowed object isString
-
getCurrentDefaultValue
public String getCurrentDefaultValue()
Gets the value of the currentDefaultValue property.- Returns:
- possible object is
String
-
setCurrentDefaultValue
public void setCurrentDefaultValue(String value)
Sets the value of the currentDefaultValue property.- Parameters:
value- allowed object isString
-
isNotnull
public Boolean isNotnull()
Gets the value of the notnull property.- Returns:
- possible object is
Boolean
-
setNotnull
public void setNotnull(Boolean value)
Sets the value of the notnull property.- Parameters:
value- allowed object isBoolean
-
isCurrentNotnull
public Boolean isCurrentNotnull()
Gets the value of the currentNotnull property.- Returns:
- possible object is
Boolean
-
setCurrentNotnull
public void setCurrentNotnull(Boolean value)
Sets the value of the currentNotnull property.- Parameters:
value- allowed object isBoolean
-
getComment
public String getComment()
Gets the value of the comment property.- Returns:
- possible object is
String
-
setComment
public void setComment(String value)
Sets the value of the comment property.- Parameters:
value- allowed object isString
-
isHistoryExclude
public Boolean isHistoryExclude()
Gets the value of the historyExclude property.- Returns:
- possible object is
Boolean
-
setHistoryExclude
public void setHistoryExclude(Boolean value)
Sets the value of the historyExclude property.- Parameters:
value- allowed object isBoolean
-
getCheckConstraint
public String getCheckConstraint()
Gets the value of the checkConstraint property.- Returns:
- possible object is
String
-
setCheckConstraint
public void setCheckConstraint(String value)
Sets the value of the checkConstraint property.- Parameters:
value- allowed object isString
-
getCheckConstraintName
public String getCheckConstraintName()
Gets the value of the checkConstraintName property.- Returns:
- possible object is
String
-
setCheckConstraintName
public void setCheckConstraintName(String value)
Sets the value of the checkConstraintName property.- Parameters:
value- allowed object isString
-
getDropCheckConstraint
public String getDropCheckConstraint()
Gets the value of the dropCheckConstraint property.- Returns:
- possible object is
String
-
setDropCheckConstraint
public void setDropCheckConstraint(String value)
Sets the value of the dropCheckConstraint property.- Parameters:
value- allowed object isString
-
getUnique
public String getUnique()
Gets the value of the unique property.- Returns:
- possible object is
String
-
setUnique
public void setUnique(String value)
Sets the value of the unique property.- Parameters:
value- allowed object isString
-
getUniqueOneToOne
public String getUniqueOneToOne()
Gets the value of the uniqueOneToOne property.- Returns:
- possible object is
String
-
setUniqueOneToOne
public void setUniqueOneToOne(String value)
Sets the value of the uniqueOneToOne property.- Parameters:
value- allowed object isString
-
getDropUnique
public String getDropUnique()
Gets the value of the dropUnique property.- Returns:
- possible object is
String
-
setDropUnique
public void setDropUnique(String value)
Sets the value of the dropUnique property.- Parameters:
value- allowed object isString
-
getReferences
public String getReferences()
Gets the value of the references property.- Returns:
- possible object is
String
-
setReferences
public void setReferences(String value)
Sets the value of the references property.- Parameters:
value- allowed object isString
-
getForeignKeyName
public String getForeignKeyName()
Gets the value of the foreignKeyName property.- Returns:
- possible object is
String
-
setForeignKeyName
public void setForeignKeyName(String value)
Sets the value of the foreignKeyName property.- Parameters:
value- allowed object isString
-
getForeignKeyIndex
public String getForeignKeyIndex()
Gets the value of the foreignKeyIndex property.- Returns:
- possible object is
String
-
setForeignKeyIndex
public void setForeignKeyIndex(String value)
Sets the value of the foreignKeyIndex property.- Parameters:
value- allowed object isString
-
getForeignKeyOnDelete
public String getForeignKeyOnDelete()
Gets the value of the foreignKeyOnDelete property.- Returns:
- possible object is
String
-
setForeignKeyOnDelete
public void setForeignKeyOnDelete(String value)
Sets the value of the foreignKeyOnDelete property.- Parameters:
value- allowed object isString
-
getForeignKeyOnUpdate
public String getForeignKeyOnUpdate()
Gets the value of the foreignKeyOnUpdate property.- Returns:
- possible object is
String
-
setForeignKeyOnUpdate
public void setForeignKeyOnUpdate(String value)
Sets the value of the foreignKeyOnUpdate property.- Parameters:
value- allowed object isString
-
getDropForeignKey
public String getDropForeignKey()
Gets the value of the dropForeignKey property.- Returns:
- possible object is
String
-
setDropForeignKey
public void setDropForeignKey(String value)
Sets the value of the dropForeignKey property.- Parameters:
value- allowed object isString
-
getDropForeignKeyIndex
public String getDropForeignKeyIndex()
Gets the value of the dropForeignKeyIndex property.- Returns:
- possible object is
String
-
setDropForeignKeyIndex
public void setDropForeignKeyIndex(String value)
Sets the value of the dropForeignKeyIndex property.- Parameters:
value- allowed object isString
-
-