Class TraceVisualizationColumnsType
- java.lang.Object
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.TraceVisualizationColumnsType
-
- All Implemented Interfaces:
Containerable
,DebugDumpable
,Serializable
,Cloneable
public class TraceVisualizationColumnsType extends Object implements Serializable, Cloneable, Containerable
What columns to visualize? Volatile - will be changed soon. E.g. we want to specify exact order of columns.Java class for TraceVisualizationColumnsType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TraceVisualizationColumnsType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="invocationId" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="duration" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="durationBefore" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="countFor" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> <element name="timeFor" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static QName
COMPLEX_TYPE
static ItemName
F_COUNT_FOR
static ItemName
F_DURATION
static ItemName
F_DURATION_BEFORE
static ItemName
F_INVOCATION_ID
static ItemName
F_TIME_FOR
-
Fields inherited from interface com.evolveum.midpoint.util.DebugDumpable
INDENT_STRING
-
-
Constructor Summary
Constructors Constructor Description TraceVisualizationColumnsType()
TraceVisualizationColumnsType(PrismContext prismContext)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PrismContainerValue
asPrismContainerValue()
TraceVisualizationColumnsType
clone()
TraceVisualizationColumnsType
countFor(String value)
List<String>
createCountForList()
List<String>
createTimeForList()
TraceVisualizationColumnsType
duration(Boolean value)
TraceVisualizationColumnsType
durationBefore(Boolean value)
<X> X
end()
boolean
equals(Object object)
List<String>
getCountFor()
List<String>
getTimeFor()
int
hashCode()
TraceVisualizationColumnsType
invocationId(Boolean value)
Boolean
isDuration()
Boolean
isDurationBefore()
Boolean
isInvocationId()
void
setDuration(Boolean value)
void
setDurationBefore(Boolean value)
void
setInvocationId(Boolean value)
void
setupContainerValue(PrismContainerValue containerValue)
Setup value to the containerable representation.TraceVisualizationColumnsType
timeFor(String value)
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_INVOCATION_ID
public static final ItemName F_INVOCATION_ID
-
F_DURATION
public static final ItemName F_DURATION
-
F_DURATION_BEFORE
public static final ItemName F_DURATION_BEFORE
-
F_COUNT_FOR
public static final ItemName F_COUNT_FOR
-
F_TIME_FOR
public static final ItemName F_TIME_FOR
-
-
Constructor Detail
-
TraceVisualizationColumnsType
public TraceVisualizationColumnsType()
-
TraceVisualizationColumnsType
public TraceVisualizationColumnsType(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()
-
isInvocationId
public Boolean isInvocationId()
-
setInvocationId
public void setInvocationId(Boolean value)
-
isDuration
public Boolean isDuration()
-
setDuration
public void setDuration(Boolean value)
-
isDurationBefore
public Boolean isDurationBefore()
-
setDurationBefore
public void setDurationBefore(Boolean value)
-
invocationId
public TraceVisualizationColumnsType invocationId(Boolean value)
-
duration
public TraceVisualizationColumnsType duration(Boolean value)
-
durationBefore
public TraceVisualizationColumnsType durationBefore(Boolean value)
-
countFor
public TraceVisualizationColumnsType countFor(String value)
-
timeFor
public TraceVisualizationColumnsType timeFor(String value)
-
clone
public TraceVisualizationColumnsType clone()
-
-