Uses of Interface
com.sonyericsson.hudson.plugins.metadata.model.values.MetadataValue

Packages that use MetadataValue
com.sonyericsson.hudson.plugins.metadata.cli   
com.sonyericsson.hudson.plugins.metadata.contributors   
com.sonyericsson.hudson.plugins.metadata.contributors.impl   
com.sonyericsson.hudson.plugins.metadata.model   
com.sonyericsson.hudson.plugins.metadata.model.definitions   
com.sonyericsson.hudson.plugins.metadata.model.values   
com.sonyericsson.hudson.plugins.metadata.search.antlr   
 

Uses of MetadataValue in com.sonyericsson.hudson.plugins.metadata.cli
 

Methods in com.sonyericsson.hudson.plugins.metadata.cli that return types with arguments of type MetadataValue
static MetadataContainer<MetadataValue> CliUtils.getContainer(String node, String job, Integer build, boolean createContainer)
          Finds the container that has been selected on the commandline.
 

Uses of MetadataValue in com.sonyericsson.hudson.plugins.metadata.contributors
 

Methods in com.sonyericsson.hudson.plugins.metadata.contributors that return types with arguments of type MetadataValue
abstract  List<MetadataValue> BuildMetadataContributor.getMetaDataFor(hudson.model.AbstractBuild build)
          Provides the meta-data that should be inserted into the build.
abstract  List<MetadataValue> JobMetadataContributor.getMetaDataFor(hudson.model.AbstractProject job)
          Provides the meta-data that should be inserted into the project.
 

Uses of MetadataValue in com.sonyericsson.hudson.plugins.metadata.contributors.impl
 

Methods in com.sonyericsson.hudson.plugins.metadata.contributors.impl that return types with arguments of type MetadataValue
 List<MetadataValue> StandardBuildMetadataContributor.getMetaDataFor(hudson.model.AbstractBuild build)
           
 List<MetadataValue> MavenJobMetadataContributor.getMetaDataFor(hudson.model.AbstractProject job)
           
 

Uses of MetadataValue in com.sonyericsson.hudson.plugins.metadata.model
 

Methods in com.sonyericsson.hudson.plugins.metadata.model that return MetadataValue
 MetadataValue MetadataBuildAction.getChild(String name)
           
 MetadataValue MetadataJobProperty.getChild(String name)
           
 MetadataValue MetadataNodeProperty.getChild(String name)
           
 MetadataValue MetadataBuildAction.setChild(int index, MetadataValue value)
           
 MetadataValue MetadataJobProperty.setChild(int index, MetadataValue value)
           
 MetadataValue MetadataNodeProperty.setChild(int index, MetadataValue value)
           
static MetadataValue JsonUtils.toValue(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
          Converts the given JSON object to MetadataValue.
 

Methods in com.sonyericsson.hudson.plugins.metadata.model that return types with arguments of type MetadataValue
 Collection<MetadataValue> MetadataBuildAction.addChild(MetadataValue value)
           
 Collection<MetadataValue> MetadataJobProperty.addChild(MetadataValue value)
           
 Collection<MetadataValue> MetadataNodeProperty.addChild(MetadataValue value)
           
 Collection<MetadataValue> MetadataBuildAction.addChildren(Collection<MetadataValue> childValues)
           
 Collection<MetadataValue> MetadataJobProperty.addChildren(Collection<MetadataValue> childValues)
           
 Collection<MetadataValue> MetadataNodeProperty.addChildren(Collection<MetadataValue> children)
           
 Collection<MetadataValue> MetadataBuildAction.getChildren()
           
 Collection<MetadataValue> MetadataJobProperty.getChildren()
           
 Collection<MetadataValue> MetadataNodeProperty.getChildren()
           
 Collection<MetadataValue> MetadataJobProperty.getNonDefinitionValues()
          Getter for the Values not coming from definitions.
 List<MetadataValue> MetadataJobProperty.getUserValues()
          All the non generated values.
 List<MetadataValue> MetadataBuildAction.getValues()
          The meta data in this action.
 List<MetadataValue> MetadataJobProperty.getValues()
          The meta data.
 Collection<MetadataValue> MetadataValueDefinitionHelper.getValues()
          Standard getter for the values.
 List<MetadataValue> MetadataNodeProperty.getValues()
          The list of metadata values.
static List<MetadataValue> JsonUtils.toValues(net.sf.json.JSONArray json, MetadataContainer<MetadataValue> container)
          Converts the given JSON array to MetadataValues.
static List<MetadataValue> JsonUtils.toValues(net.sf.json.JSON json, MetadataContainer<MetadataValue> container)
          Converts the given JSON object to MetadataValues.
 

Methods in com.sonyericsson.hudson.plugins.metadata.model with parameters of type MetadataValue
 Collection<MetadataValue> MetadataBuildAction.addChild(MetadataValue value)
           
 Collection<MetadataValue> MetadataJobProperty.addChild(MetadataValue value)
           
 Collection<MetadataValue> MetadataNodeProperty.addChild(MetadataValue value)
           
 MetadataValue MetadataBuildAction.setChild(int index, MetadataValue value)
           
 MetadataValue MetadataJobProperty.setChild(int index, MetadataValue value)
           
 MetadataValue MetadataNodeProperty.setChild(int index, MetadataValue value)
           
 

Method parameters in com.sonyericsson.hudson.plugins.metadata.model with type arguments of type MetadataValue
 Collection<MetadataValue> MetadataBuildAction.addChildren(Collection<MetadataValue> childValues)
           
 Collection<MetadataValue> MetadataJobProperty.addChildren(Collection<MetadataValue> childValues)
           
 Collection<MetadataValue> MetadataNodeProperty.addChildren(Collection<MetadataValue> children)
           
 void MetadataJobProperty.setValues(List<MetadataValue> values)
          Setter for the values.
static net.sf.json.JSON JsonUtils.toJson(Collection<MetadataValue> values)
          Converts the given values into a JSON array.
static MetadataValue JsonUtils.toValue(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
          Converts the given JSON object to MetadataValue.
static List<MetadataValue> JsonUtils.toValues(net.sf.json.JSONArray json, MetadataContainer<MetadataValue> container)
          Converts the given JSON array to MetadataValues.
static List<MetadataValue> JsonUtils.toValues(net.sf.json.JSON json, MetadataContainer<MetadataValue> container)
          Converts the given JSON object to MetadataValues.
 

Constructor parameters in com.sonyericsson.hudson.plugins.metadata.model with type arguments of type MetadataValue
MetadataBuildAction(hudson.model.Run run, List<MetadataValue> values)
          Deprecated. 
MetadataJobProperty(List<MetadataValue> values)
          Standard DataBound Constructor.
MetadataNodeProperty(List<MetadataValue> values)
          Standard Constructor.
MetadataValueDefinitionHelper(Collection<MetadataValue> values)
          Standard constructor.
 

Uses of MetadataValue in com.sonyericsson.hudson.plugins.metadata.model.definitions
 

Methods in com.sonyericsson.hudson.plugins.metadata.model.definitions that return MetadataValue
 MetadataValue MetadataDefinition.createValue(Object o)
          Creates a MetadataValue from this definition.
 

Uses of MetadataValue in com.sonyericsson.hudson.plugins.metadata.model.values
 

Classes in com.sonyericsson.hudson.plugins.metadata.model.values that implement MetadataValue
 class AbstractMetadataValue
          A metadata value to be set in a job or node.
 class DateMetadataValue
          Meta data with the value of a Date.
 class NumberMetadataValue
          Meta data containing a non-decimal number.
 class StringMetadataValue
          A Meta Data value of the type String.
 class TreeNodeMetadataValue
          Meta data containing other meta data values.
 

Methods in com.sonyericsson.hudson.plugins.metadata.model.values that return MetadataValue
 MetadataValue MetadataValue.clone()
          Clones this MetadataValue.
 MetadataValue NumberMetadataValue.NumberMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
           
 MetadataValue StringMetadataValue.StringMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
           
abstract  MetadataValue AbstractMetadataValue.AbstractMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
          Converts a JSON object into a MetadataValue of this descriptors describable.
 MetadataValue DateMetadataValue.DateMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
           
 MetadataValue TreeNodeMetadataValue.TreeNodeMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
           
 MetadataValue TreeNodeMetadataValue.getChild(String name)
          Returns the child with the given name, or null if there is none.
 MetadataValue TreeNodeMetadataValue.setChild(int index, MetadataValue value)
           
 

Methods in com.sonyericsson.hudson.plugins.metadata.model.values that return types with arguments of type MetadataValue
 Collection<MetadataValue> TreeNodeMetadataValue.addChild(MetadataValue value)
           
 Collection<MetadataValue> TreeNodeMetadataValue.addChildren(Collection<MetadataValue> values)
           
 Collection<MetadataValue> TreeNodeMetadataValue.getChildren()
           
 MetadataParent<MetadataValue> AbstractMetadataValue.getParent()
          This value's parent.
 List<MetadataValue> TreeNodeMetadataValue.getValue()
           
 

Methods in com.sonyericsson.hudson.plugins.metadata.model.values with parameters of type MetadataValue
 Collection<MetadataValue> TreeNodeMetadataValue.addChild(MetadataValue value)
           
static String TreeStructureUtil.prettyPrint(MetadataValue value, String tabs)
          Prints the value and it's child if any into a structured string.
static void ParentUtil.replaceChild(MetadataParent<MetadataValue> parent, MetadataValue value)
          Replaces an existing value amongst the parent's children.
 void AbstractMetadataValue.replacementOf(MetadataValue old)
           
 void MetadataValue.replacementOf(MetadataValue old)
          A signal sent to this object that it is the replacement of another object.
 void TreeNodeMetadataValue.replacementOf(MetadataValue old)
           
 MetadataValue TreeNodeMetadataValue.setChild(int index, MetadataValue value)
           
 

Method parameters in com.sonyericsson.hudson.plugins.metadata.model.values with type arguments of type MetadataValue
 Collection<MetadataValue> TreeNodeMetadataValue.addChildren(Collection<MetadataValue> values)
           
 MetadataValue NumberMetadataValue.NumberMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
           
 MetadataValue StringMetadataValue.StringMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
           
abstract  MetadataValue AbstractMetadataValue.AbstractMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
          Converts a JSON object into a MetadataValue of this descriptors describable.
 MetadataValue DateMetadataValue.DateMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
           
 MetadataValue TreeNodeMetadataValue.TreeNodeMetaDataValueDescriptor.fromJson(net.sf.json.JSONObject json, MetadataContainer<MetadataValue> container)
           
static Collection<String> ParentUtil.getChildNames(MetadataParent<MetadataValue> parent)
          Gets the child names of the given parent.
 String AbstractMetadataValue.getFullNameFrom(MetadataParent<MetadataValue> base)
           
static String TreeStructureUtil.prettyPrint(Collection<MetadataValue> values, String tabs)
          Prints the values and their children if any into a structured string.
static void ParentUtil.replaceChild(MetadataParent<MetadataValue> parent, MetadataValue value)
          Replaces an existing value amongst the parent's children.
static void ParentUtil.replaceChildren(MetadataParent<MetadataValue> parent, List<MetadataValue> children)
          Adds the children in a list to a parent, replacing any existing children already present.
static void ParentUtil.replaceChildren(MetadataParent<MetadataValue> parent, List<MetadataValue> children)
          Adds the children in a list to a parent, replacing any existing children already present.
 void AbstractMetadataValue.setParent(MetadataParent<MetadataValue> parent)
          This value's parent.
static net.sf.json.JSON ParentUtil.toJson(MetadataContainer<MetadataValue> container)
          Converts the container into a JSON object.
 

Constructor parameters in com.sonyericsson.hudson.plugins.metadata.model.values with type arguments of type MetadataValue
TreeNodeMetadataValue(String name, List<MetadataValue> children)
          Standard Constructor.
TreeNodeMetadataValue(String name, String description, List<MetadataValue> children)
          Standard Constructor.
TreeNodeMetadataValue(String name, String description, List<MetadataValue> children, boolean exposedToEnvironment)
          Standard Constructor.
 

Uses of MetadataValue in com.sonyericsson.hudson.plugins.metadata.search.antlr
 

Method parameters in com.sonyericsson.hudson.plugins.metadata.search.antlr with type arguments of type MetadataValue
 boolean QueryWalker.evaluate(MetadataContainer<MetadataValue> metaDataProperty)
           
 



Copyright © 2004-2013. All Rights Reserved.