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

org.jboss.shrinkwrap.descriptor.api.webfragment31.OrderingOrderingType Maven / Gradle / Ivy

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

import java.util.ArrayList;
import java.util.List;
import org.jboss.shrinkwrap.descriptor.api.Child;
import org.jboss.shrinkwrap.descriptor.api.webfragment.*;
import org.jboss.shrinkwrap.descriptor.api.webfragment.JavaeeOrderingOrderingCommonType;
/**
 * This interface defines the contract for the  ordering-orderingType  xsd type 
 * @author Ralf Battenfeld
 * @author Andrew Lee Rubinger
 */
public interface OrderingOrderingType extends Child, 
    JavaeeOrderingOrderingCommonType> { 

 
   // --------------------------------------------------------------------------------------------------------||
   // ClassName: OrderingOrderingType 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 OrderingOrderingType 
    */
   public OrderingOrderingType name(String ... values);

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

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

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

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy