Package com.ibm.ws.javaee.dd.web.common
Interface Ordering
-
public interface Ordering
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>
getAfterNames()
java.util.List<java.lang.String>
getBeforeNames()
boolean
isSetAfter()
boolean
isSetAfterOthers()
boolean
isSetBefore()
boolean
isSetBeforeOthers()
-
-
-
Method Detail
-
isSetAfter
boolean isSetAfter()
- Returns:
- true if <after> is specified
- See Also:
getAfterNames()
,isSetAfterOthers()
-
getAfterNames
java.util.List<java.lang.String> getAfterNames()
- Returns:
- <name>, within <after> if specified, as a read-only list
- See Also:
isSetAfter()
-
isSetAfterOthers
boolean isSetAfterOthers()
- Returns:
- true if <others>, within <after> if specified, is specified
- See Also:
isSetAfter()
-
isSetBefore
boolean isSetBefore()
- Returns:
- true if <before> is specified
- See Also:
getBeforeNames()
,isSetBeforeOthers()
-
getBeforeNames
java.util.List<java.lang.String> getBeforeNames()
- Returns:
- <name>, within <before> if specified, as a read-only list
- See Also:
isSetBefore()
-
isSetBeforeOthers
boolean isSetBeforeOthers()
- Returns:
- true if <others>, within <before> if specified, is specified
- See Also:
isSetBefore()
-
-