Class OrderConstraintsType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.OrderConstraintsType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class OrderConstraintsType extends Object implements Serializable, Cloneable, Containerable
TODOJava class for OrderConstraintsType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="OrderConstraintsType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="order" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="orderMin" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="orderMax" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="resetOrder" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/> <element name="relation" type="{http://www.w3.org/2001/XMLSchema}QName" minOccurs="0"/> </sequence> <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}long" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_ORDER
static ItemName
F_ORDER_MAX
static ItemName
F_ORDER_MIN
static ItemName
F_RELATION
static ItemName
F_RESET_ORDER
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description OrderConstraintsType()
OrderConstraintsType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
OrderConstraintsType
clone()
<X> X
end()
boolean
equals(Object object)
Long
getId()
Integer
getOrder()
String
getOrderMax()
String
getOrderMin()
QName
getRelation()
Integer
getResetOrder()
int
hashCode()
OrderConstraintsType
id(Long value)
OrderConstraintsType
order(Integer value)
OrderConstraintsType
orderMax(String value)
OrderConstraintsType
orderMin(String value)
OrderConstraintsType
relation(QName value)
OrderConstraintsType
resetOrder(Integer value)
void
setId(Long value)
void
setOrder(Integer value)
void
setOrderMax(String value)
void
setOrderMin(String value)
void
setRelation(QName value)
void
setResetOrder(Integer value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.String
toString()
-
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.evolveum.midpoint.prism.Containerable
cloneWithoutId, debugDump
-
Methods inherited from interface com.evolveum.midpoint.util.DebugDumpable
debugDump, debugDumpLazily, debugDumpLazily
-
-
-
-
Field Detail
-
COMPLEX_TYPE
public static final QName COMPLEX_TYPE
-
F_ORDER
public static final ItemName F_ORDER
-
F_ORDER_MIN
public static final ItemName F_ORDER_MIN
-
F_ORDER_MAX
public static final ItemName F_ORDER_MAX
-
F_RESET_ORDER
public static final ItemName F_RESET_ORDER
-
F_RELATION
public static final ItemName F_RELATION
-
-
Constructor Detail
-
OrderConstraintsType
public OrderConstraintsType()
-
OrderConstraintsType
public OrderConstraintsType(PrismContext prismContext)
-
-
Method Detail
-
asPrismContainerValue
public PrismContainerValue asPrismContainerValue()
- Specified by:
asPrismContainerValue
in interfaceContainerable
-
setupContainerValue
public void setupContainerValue(PrismContainerValue containerValue)
Description copied from interface:Containerable
Setup value to the containerable representation. This is used to after (empty) containerable is created to initialize it with a correct prism container value. Note: This method DOES NOT change the container value parent.- Specified by:
setupContainerValue
in interfaceContainerable
-
end
public <X> X end()
-
getOrder
public Integer getOrder()
-
setOrder
public void setOrder(Integer value)
-
getOrderMin
public String getOrderMin()
-
setOrderMin
public void setOrderMin(String value)
-
getOrderMax
public String getOrderMax()
-
setOrderMax
public void setOrderMax(String value)
-
getResetOrder
public Integer getResetOrder()
-
setResetOrder
public void setResetOrder(Integer value)
-
getRelation
public QName getRelation()
-
setRelation
public void setRelation(QName value)
-
getId
public Long getId()
-
setId
public void setId(Long value)
-
order
public OrderConstraintsType order(Integer value)
-
orderMin
public OrderConstraintsType orderMin(String value)
-
orderMax
public OrderConstraintsType orderMax(String value)
-
resetOrder
public OrderConstraintsType resetOrder(Integer value)
-
relation
public OrderConstraintsType relation(QName value)
-
id
public OrderConstraintsType id(Long value)
-
clone
public OrderConstraintsType clone()
-
-