Uses of Class
org.eclipse.mat.query.annotations.Argument.Advice

Packages that use Argument.Advice
org.eclipse.mat.internal.snapshot Collects arguments for queries. 
org.eclipse.mat.query Package for examining and controlling results of running queries. 
org.eclipse.mat.query.annotations Annotations for Queries. 
org.eclipse.mat.query.annotations.descriptors Package of interfaces for examining annotations of queries and arguments. 
org.eclipse.mat.query.registry Package for getting a list of queries and examining their capabilities and setting them up. 
org.eclipse.mat.ui.internal.acquire Acquire heap dumps from other running processes - user interface (not API). 
 

Uses of Argument.Advice in org.eclipse.mat.internal.snapshot
 

Methods in org.eclipse.mat.internal.snapshot with parameters of type Argument.Advice
 boolean SnapshotQueryContext.available(java.lang.Class<?> type, Argument.Advice advice)
           
 boolean SnapshotQueryContext.converts(java.lang.Class<?> type, Argument.Advice advice)
           
 java.lang.String SnapshotQueryContext.convertToString(java.lang.Class<?> type, Argument.Advice advice, java.lang.Object value)
           
 java.lang.Object SnapshotQueryContext.convertToValue(java.lang.Class<?> type, Argument.Advice advice, java.lang.String value)
           
 java.lang.Object SnapshotQueryContext.get(java.lang.Class<?> type, Argument.Advice advice)
           
 java.lang.Object SnapshotQueryContext.parse(java.lang.Class<?> type, Argument.Advice advice, java.lang.String[] args, java.text.ParsePosition pos)
           
 boolean SnapshotQueryContext.parses(java.lang.Class<?> type, Argument.Advice advice)
           
 

Uses of Argument.Advice in org.eclipse.mat.query
 

Methods in org.eclipse.mat.query with parameters of type Argument.Advice
 boolean IQueryContext.available(java.lang.Class<?> type, Argument.Advice advice)
          Is this type of data available from the context?
 boolean IQueryContext.converts(java.lang.Class<?> type, Argument.Advice advice)
          Does the context have a converter for data of this type?
 java.lang.String IQueryContext.convertToString(java.lang.Class<?> type, Argument.Advice advice, java.lang.Object value)
          Convert the value to a string.
 java.lang.Object IQueryContext.convertToValue(java.lang.Class<?> type, Argument.Advice advice, java.lang.String value)
          Convert the String to the value based on the type and advice.
 java.lang.Object IQueryContext.get(java.lang.Class<?> type, Argument.Advice advice)
          Get this type of data from the context.
 java.lang.Object IQueryContext.parse(java.lang.Class<?> type, Argument.Advice advice, java.lang.String[] args, java.text.ParsePosition pos)
          Consume the special data.
 boolean IQueryContext.parses(java.lang.Class<?> type, Argument.Advice advice)
          Is special parsing required to get an object of the required type?
 

Uses of Argument.Advice in org.eclipse.mat.query.annotations
 

Methods in org.eclipse.mat.query.annotations that return Argument.Advice
static Argument.Advice Argument.Advice.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Argument.Advice[] Argument.Advice.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Uses of Argument.Advice in org.eclipse.mat.query.annotations.descriptors
 

Methods in org.eclipse.mat.query.annotations.descriptors that return Argument.Advice
 Argument.Advice IArgumentDescriptor.getAdvice()
          Get the Argument.Advice provided with the annotation
 

Uses of Argument.Advice in org.eclipse.mat.query.registry
 

Methods in org.eclipse.mat.query.registry that return Argument.Advice
 Argument.Advice ArgumentDescriptor.getAdvice()
           
 

Methods in org.eclipse.mat.query.registry with parameters of type Argument.Advice
 boolean QueryContextImpl.available(java.lang.Class<?> type, Argument.Advice advice)
           
 boolean QueryContextImpl.converts(java.lang.Class<?> type, Argument.Advice advice)
           
 java.lang.String QueryContextImpl.convertToString(java.lang.Class<?> type, Argument.Advice advice, java.lang.Object value)
           
 java.lang.Object QueryContextImpl.convertToValue(java.lang.Class<?> type, Argument.Advice advice, java.lang.String value)
           
 java.lang.Object QueryContextImpl.get(java.lang.Class<?> type, Argument.Advice advice)
           
 void ArgumentDescriptor.setAdvice(Argument.Advice advice)
           
 

Uses of Argument.Advice in org.eclipse.mat.ui.internal.acquire
 

Methods in org.eclipse.mat.ui.internal.acquire with parameters of type Argument.Advice
 java.lang.Object ProviderContextImpl.parse(java.lang.Class<?> type, Argument.Advice advice, java.lang.String[] args, java.text.ParsePosition pos)
           
 boolean ProviderContextImpl.parses(java.lang.Class<?> type, Argument.Advice advice)