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

org.jboss.shrinkwrap.descriptor.api.webcommon30.AbsoluteOrderingType Maven / Gradle / Ivy

package org.jboss.shrinkwrap.descriptor.api.webcommon30; 

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.webcommon.*;
import org.jboss.shrinkwrap.descriptor.api.javaee.*;
import org.jboss.shrinkwrap.descriptor.api.jsp.*;
import org.jboss.shrinkwrap.descriptor.api.webapp.JavaeeAbsoluteOrderingCommonType;
/**
 * This interface defines the contract for the  absoluteOrderingType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 * @author George Gastaldi
 */
public interface AbsoluteOrderingType extends Child, 
    JavaeeAbsoluteOrderingCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AbsoluteOrderingType ElementName: xsd:token ElementType : name
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: true
   // --------------------------------------------------------------------------------------------------------||

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

   /**
    * Returns all name elements
    * @return list of name 
    */
   public List getAllName();

   /**
    * Removes the name element 
    * @return the current instance of AbsoluteOrderingType 
    */
   public AbsoluteOrderingType removeAllName();

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: AbsoluteOrderingType ElementName: javaee:ordering-othersType ElementType : others
   // MaxOccurs: -unbounded  isGeneric: true   isAttribute: false isEnum: false isDataType: false
   // --------------------------------------------------------------------------------------------------------||

   /**
    * Sets the others element 
    * @return the current instance of AbsoluteOrderingType 
    */
   public AbsoluteOrderingType others();

   /**
    * Removes the others element 
    * @return the current instance of AbsoluteOrderingType 
    */
   public Boolean isOthers();

   /**
    * Removes the others element 
    * @return the current instance of AbsoluteOrderingType 
    */
   public AbsoluteOrderingType removeOthers();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy