Package com.ibm.wsspi.security.wim.model
Class SortKeyType
- java.lang.Object
-
- com.ibm.wsspi.security.wim.model.SortKeyType
-
public class SortKeyType extends java.lang.Object
Java class for SortKeyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SortKeyType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="propertyName" type="{http://www.w3.org/2001/XMLSchema}string"/> <element name="ascendingOrder" type="{http://www.w3.org/2001/XMLSchema}boolean"/> </sequence> </restriction> </complexContent> </complexType>
The SortKeyType object defines two properties:
- propertyName: defines the key by which to do the sort.
- ascendingOrder: is set to true by default and returns the sorted objects in ascendingOrder. To sort by descending order, set the property to false.
-
-
Constructor Summary
Constructors Constructor Description SortKeyType()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Object
get(java.lang.String propName)
java.lang.String
getDataType(java.lang.String propName)
java.lang.String
getPropertyName()
Gets the value of the propertyName property.static java.util.List
getPropertyNames(java.lang.String entityTypeName)
static java.util.HashSet
getSubTypes()
java.util.ArrayList
getSuperTypes()
java.lang.String
getTypeName()
boolean
isAscendingOrder()
Gets the value of the ascendingOrder property.boolean
isSet(java.lang.String propName)
boolean
isSetAscendingOrder()
boolean
isSetPropertyName()
boolean
isSubType(java.lang.String superTypeName)
void
set(java.lang.String propName, java.lang.Object value)
void
setAscendingOrder(boolean value)
Sets the value of the ascendingOrder property.void
setPropertyName(java.lang.String value)
Sets the value of the propertyName property.java.lang.String
toString()
void
unset(java.lang.String propName)
-
-
-
Method Detail
-
getPropertyName
public java.lang.String getPropertyName()
Gets the value of the propertyName property.- Returns:
- possible object is
String
-
setPropertyName
public void setPropertyName(java.lang.String value)
Sets the value of the propertyName property.- Parameters:
value
- allowed object isString
-
isSetPropertyName
public boolean isSetPropertyName()
-
isAscendingOrder
public boolean isAscendingOrder()
Gets the value of the ascendingOrder property.
-
setAscendingOrder
public void setAscendingOrder(boolean value)
Sets the value of the ascendingOrder property.
-
isSetAscendingOrder
public boolean isSetAscendingOrder()
-
get
public java.lang.Object get(java.lang.String propName)
-
isSet
public boolean isSet(java.lang.String propName)
-
set
public void set(java.lang.String propName, java.lang.Object value)
-
unset
public void unset(java.lang.String propName)
-
getTypeName
public java.lang.String getTypeName()
-
getPropertyNames
public static java.util.List getPropertyNames(java.lang.String entityTypeName)
-
getDataType
public java.lang.String getDataType(java.lang.String propName)
-
getSuperTypes
public java.util.ArrayList getSuperTypes()
-
isSubType
public boolean isSubType(java.lang.String superTypeName)
-
getSubTypes
public static java.util.HashSet getSubTypes()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-