All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.shrinkwrap.descriptor.api.orm10.UniqueConstraint Maven / Gradle / Ivy

The newest version!
package org.jboss.shrinkwrap.descriptor.api.orm10; 

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.orm.*;
import org.jboss.shrinkwrap.descriptor.api.orm.OrmUniqueConstraintCommType;
/**
 * This interface defines the contract for the  unique-constraint  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface UniqueConstraint extends Child, 
    OrmUniqueConstraintCommType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: UniqueConstraint ElementName: xsd:string ElementType : column-name
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Creates for all String objects representing column-name elements, 
    * a new column-name element 
    * @param values list of column-name objects 
    * @return the current instance of UniqueConstraint 
    */
   public UniqueConstraint columnName(String ... values);

   /**
    * Returns all column-name elements
    * @return list of column-name 
    */
   public List getAllColumnName();

   /**
    * Removes the column-name element 
    * @return the current instance of UniqueConstraint 
    */
   public UniqueConstraint removeAllColumnName();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy