-
LONI.tree.module.Value
-
SmartGen.Value
A representation of the model object 'Value'.
@see SmartGen.SmartGenPackage#getValue()
@model abstract="true"
@generated
-
br.com.gmartins.simbler.instructions.value.Value
Classe usada para tratar valores dos comandos. Todos valores são armazenados internamente como Strings. Na hora de ser mostrado ele é convertido para o padrão de visualização selecionado.
@author Guilherme
-
ca.nengo.config.ui.ConfigurationTreeModel.Value
-
cc.plural.jsonij.Value
Value is extended by every JSON internalType implementation. This class provides generic access to all values to make life a little easier when traversing the JSON Document.
@author J.W.Marsden
@version 1.0.0
-
ch.njol.skript.variables.SerializedVariable.Value
-
client.net.sf.saxon.ce.value.Value
A value is the result of an expression but it is also an expression in its own right. Note that every value can be regarded as a sequence - in many cases, a sequence of length one.
-
com.aerospike.client.Value
Polymorphic value classes used to efficiently serialize objects into the wire protocol.
-
com.alee.managers.language.data.Value
@author Mikle Garin
-
com.alibaba.wasp.jdbc.value.Value
This is the base class for all value classes. It provides conversion and comparison methods.
-
com.altamiracorp.bigtable.model.Value
-
com.bacoder.parser.javaproperties.api.Value
-
com.badlogic.gdx.tools.hiero.unicodefont.effects.ConfigurableEffect.Value
-
com.caucho.quercus.env.Value
Represents a PHP expression value.
-
com.cburch.logisim.data.Value
-
com.dbxml.db.core.data.Value
Value is the primary base class for all data storing objects. The content window of Value objects are immutable, but the underlying byte array is not.
-
com.dotcms.repackage.com.caucho.quercus.env.Value
-
com.dyn.client.v3.traffic.domain.RecordSet.Value
f.org/rfc/rfc2782.txt">RFC 2782
-
com.ebay.sdk.attributes.model.Value
Wrapes eBL ValType.
Title: AttributesLib for Java
Description:
Copyright: Copyright (c) 2004
Company: eBay Inc.
@author Weijun Li
@version 1.0
-
com.esri.gpt.catalog.search.SearchParameterMap.Value
-
com.foundationdb.server.types.value.Value
-
com.google.appengine.api.utils.SystemProperty.Environment.Value
-
com.google.clearsilver.jsilver.values.Value
Dynamic typing system used by JSilver interpreter. A value (e.g. "2") can act as a string, integer and boolean. Values can be literal or references to variables held elsewhere (e.g. in external data structures such as HDF).
-
com.google.eclipse.protobuf.protobuf.Value
-
com.google.enterprise.connector.spi.Value
Wrapper class for all data items from a repository. Connector implementors create instances of this class by calling the appropriate static factory method. The factory methods are named to reflect the type data they carry, thus:
- {@code getStringValue} creates an object carrying a string
- {@code getBinaryValue} creates an object carrying binary data(stream or byte array)
- {@code getLongValue} creates an object carrying an integer
- {@code getDoubleValue} creates an object carrying afloating-point value
- {@code getDateValue} creates an object carrying a date
- {@code getBooleanValue} creates an object carrying a boolean
In addition, some of the factory methods are overloaded for the convenience of the connector developer. The implementations attempt to convert from the parameter type to the base type indicated in the factory method's name.
@since 1.0
-
com.google.gwt.dev.shell.BrowserChannel.Value
-
com.google.gwt.libideas.resources.css.ast.CssProperty.Value
-
com.google.gwt.resources.css.ast.CssProperty.Value
-
com.google.visualization.datasource.datatable.value.Value
An abstract value of a single cell in a table. Acts as a base class for all the typed value classes. A value should be an immutable class, because it is reference-copied when cloning complex objects like rows or whole tables.
@author Itai R.
-
com.hazelcast.query.SampleObjects.Value
-
com.icl.saxon.expr.Value
-
com.litecoding.smali2java.entity.smali.Value
-
com.opera.core.systems.scope.protos.EcmascriptProtos.Value
-
com.persistit.Value
sun.com/j2se/1.4.2/docs/guide/serialization/spec/serialTOC.html" > Java Object Serialization Specification. You may set the
serialOverride
configuration property to specify classes that are to be serialized in standard form.
See Persistit JSA 1.1 Object Serialization for more detailed information on these these subjects.
Value as the key of a HashMap or WeakHashMap
It may be useful to build a WeakHashMap associating the serialized content of a Value
with an associated deserialized object to avoid object deserialization overhead or to implement correct identity semantics. Since Value
is mutable it is a poor choice for use as a map key. Instead, an immutable {@link ValueState} should be used to hold an immutablecopy of this state. Value
and ValueState
implement hashCode
and equals
in a compatible fashion so that code similar to the following works as expected:
... Value value = <some value>; if (!map.contains(value)) // uses the transient current state { ValueState vs = new ValueState(value); map.put(vs, object); // uses an immutable copy as the key }
Displayable Format
The {@link #toString()} method of this class attempts to construct ahuman-readable representation of the serialized value. The Tree display panel of the AdminUI utility uses this capability to summarize the contents of values stored in a tree. The string representation is constructed as follows:
- If the state represented by this
Value
is undefined, then return "undefined". - If the state is
null
or a boolean
, return "null" "false", or "true". - If the value represents a primitive type, return the string representation of the value, prefixed by "(byte)", "(short)", "(char)", "(long)", or "(float)" for the corresponding types. Values of type
int
and double
are presented without prefix to reduce clutter. - If the value represents a String, return a modified form of the string enclosed in double quotes. For each character of the string, if it is a double quote replace it by "\"", otherwise if it is outside of the printable ASCII character set replace the character in the modified string by "\b", "\t", "\n", "\r" or "\u0000" such that the modified string would be a valid Java string constant.
- If the value represents a
java.util.Date
, return a formatted representation of the date using the format specified by {@link Key#SDF}. This is a readable format the displays the date with full precision, including milliseconds. - If the value represents an array, return a list of comma-separated element values surrounded by square brackets.
- If the value represents one of the standard
Collection
implementations in the java.util
package, then return a comma-separated list of values surrounded by square brackets. - If the value represents one of the standard
Map
implementations in the java.util
package, then return a comma-separated list of key/value pairs surrounded by square brackets. Each key/value pair is represented by a string in the form key->value. - If the value represents an object of a class for which there is a registered {@link com.persistit.encoding.ValueDisplayer}, invoke the displayer's {@link com.persistit.encoding.ValueDisplayer#display display}method to format a displayable representation of the object.
- If the value represents an object that has been stored using the version 1.1 storage mechanism described object, return the class name of the object followed by a comma-separated tuple, enclosed within curly brace characters, representing the value of each field of the object.
- If the value represents an object encoded through standard Java serialization, return the string "(Serialized-object)" followed by a sequence of hex digits representing the serialized bytes. Note that this process does not attempt to deserialize the object, which might have unintended consequences.
- If the value represents an object that has already been represented within the formatted result - for example, if a
Collection
contain two references to the same object - then instead of creating an additional string representing the second or subsequent instance, emit a back reference pointer in the form @NNN where NNN is the character offset within the displayable string where the first instance was found. (Note: does not apply to strings and the primitive wrapper classes.)
For example, consider a Person class with fields for date of birth, first name, last name, salary and friends, an array of other Person objects. The result returned by {@link #toString} on a Value
representing twoPerson instances, each with just the other as a friend, might appear as follows: (Note, space added for legibility.)
(Person){(Date)19490826000000.000-0400,"Mary","Jones",(long)75000,[ (Person){(Date)19550522000000.000-0400,"John","Smith",(long)68000,[@0]}]}
In this example, John Smith's
friends
array contains a back reference to Mary Jones in the form "@0" because Mary's displayable reference starts at the beginning of the string.
Stream mode
A Value
normally contains just one object or primitive value. In its normal mode of operation, the put
operation overwrites any previously held state, and the get
operation retrieves the one object or primitive value represented by the current state of the Value
. A subsequent invocation of get
returns the same value.
However, at certain times it is useful to store multiple items (fields) together in one Value
object. To allow this, Value
implements an alternative mode of operation called stream mode in which each put
invocation appends a new field to the state rather than replacing the previous state. Similarly, get
operations retrieve sequentially written fields rather than rereading the same field. Stream allows {@link com.persistit.encoding.ValueCoder ValueCoder} implementations to aggregate the multiple fields encapsulatedwithin an encoded value.
Low-Level API
The low-level API allows an application to bypass the encoding and decoding operations described above and instead to operate directly on the byte array stored in the database. This might be appropriate for an existing application that has already implemented its own serialization mechanisms. Applications should use these methods only if there is a compelling design requirement to do so.
The low-level API methods are:
byte[] {@link #getEncodedBytes}int {@link #getEncodedSize}void {@link #setEncodedSize(int)}void {@link #putEncodedBytes(byte[],int,int)}void {@link #copyFromEncodedBytes(byte[],int,int,int)}boolean {@link #ensureFit(int)}
@version 1.1
-
com.redhat.ceylon.compiler.typechecker.model.Value
Represents a simple attribute or local.
@author Gavin King
-
com.sleepycat.je.rep.elections.Protocol.Value
-
com.sun.jdi.Value
The mirror for a value in the target VM. This interface is the root of a value hierarchy encompassing primitive values and object values.
Some examples of where values may be accessed:
{@link ObjectReference#getValue(com.sun.jdi.Field) ObjectReference.getValue(Field)} | - value of a field |
{@link StackFrame#getValue(com.sun.jdi.LocalVariable) StackFrame.getValue(LocalVariable)} | - value of a variable |
{@link VirtualMachine#mirrorOf(double) VirtualMachine.mirrorOf(double)} | - created in the target VM by the JDI client |
{@link com.sun.jdi.event.ModificationWatchpointEvent#valueToBe() ModificationWatchpointEvent.valueToBe()} | - returned with an event |
The following table illustrates which subinterfaces of Value are used to mirror values in the target VM --
Subinterfaces of {@link PrimitiveValue} |
Kind of value | For example - expression in target | Is mirrored as an instance of | {@link Type} of value {@link #type() Value.type()} |
a boolean | true | {@link BooleanValue} | {@link BooleanType} |
a byte | (byte)4 | {@link ByteValue} | {@link ByteType} |
a char | 'a' | {@link CharValue} | {@link CharType} |
a double | 3.1415926 | {@link DoubleValue} | {@link DoubleType} |
a float | 2.5f | {@link FloatValue} | {@link FloatType} |
an int | 22 | {@link IntegerValue} | {@link IntegerType} |
a long | 1024L | {@link LongValue} | {@link LongType} |
a short | (short)12 | {@link ShortValue} | {@link ShortType} |
a void | | {@link VoidValue} | {@link VoidType} |
Subinterfaces of {@link ObjectReference} |
Kind of value | For example - expression in target | Is mirrored as an instance of | {@link Type} of value {@link #type() Value.type()} |
a class instance | this | {@link ObjectReference} | {@link ClassType} |
an array | new int[5] | {@link ArrayReference} | {@link ArrayType} |
a string | "hello" | {@link StringReference} | {@link ClassType} |
a thread | Thread.currentThread() | {@link ThreadReference} | {@link ClassType} |
a thread group | Thread.currentThread() .getThreadGroup() | {@link ThreadGroupReference} | {@link ClassType} |
a java.lang.Class instance | this.getClass() | {@link ClassObjectReference} | {@link ClassType} |
a class loader | this.getClass() .getClassLoader() | {@link ClassLoaderReference} | {@link ClassType} |
Other |
Kind of value | For example - expression in target | Is mirrored as | {@link Type} of value |
null | null | null | n/a |
@author Robert Field
@author Gordon Hirsch
@author James McIlree
@since 1.3
-
com.sun.tools.txw2.model.Value
A constant value.
@author Kohsuke Kawaguchi
-
com.svanloon.game.wizard.core.card.Value
-
com.volantis.mcs.build.themes.definitions.values.Value
Base interface for all interfaces that represent values within the theme property definitions.
-
com.volantis.xml.expression.Value
The base interface for values that can be used in an expression.
Warning: This is a facade provided for use by user code, not for implementation in user code. User implementations of this interface are highly likely to be incompatible with future releases of the product at both binary and source levels.
Immutable
All value objects are immutable once they have been created.
Null Value
An empty sequence is the XPath 2.0 equivalent of a Java null value. See {@link Sequence#EMPTY}.
@volantis-api-include-in PublicAPI
@volantis-api-include-in ProfessionalServicesAPI
@volantis-api-include-in InternalAPI
@mock.generate
-
com.workingdogs.village.Value
A Value represents a single cell in a database table. In other words, it is the cross between a row and column and contains the information held there.
@author
Jon S. Stevens
@version $Revision: 568 $
-
de.hpi.eworld.simulationstatistic.model.Value
-
de.odysseus.staxon.json.stream.JsonStreamSource.Value
-
de.willuhn.jameica.hbci.server.Value
Hilfsklasse, die einen Saldo oder Betrag zu einem Zeitpunkt kapselt.
-
easysm.datatypes.Value
@author FourCheeses Software Solutions
-
edu.stanford.nlp.ling.tokensregex.types.Value
A expression that has been evaluated to a Java object of type T
@author Angel Chang
-
edu.stanford.nlp.sempre.Value
Values represent denotations (or partial denotations).
@author Percy Liang
-
eu.hansolo.galileo.Pin.Value
-
eu.planets_project.pp.plato.model.values.Value
-
eu.scape_project.planning.model.values.Value
-
eu.stratosphere.pact.runtime.test.util.TestData.Value
-
eu.stratosphere.types.Value
Basic value interface for types that act as serializable values.
This interface extends {@link IOReadableWritable} and requires to implementthe serialization of its value.
@see eu.stratosphere.core.io.IOReadableWritable
-
fiftyone.mobile.detection.entities.Value
A value associated with a property and component within the dataset.
-
fjord.Value
-
flash.tools.debugger.Value
An ActionScript value, for example, the value of a variable or constant.
@author mmorearty
-
gov.nist.scap.xccdf.document.Value
-
heart.alsvfd.Value
An abstract class representing a Value in ALSV(FD) logic. Values can be of five types in ALSV(FD): simple symbolic, simple numeric range symbolic, range numeric and set. This is a base class for all of the more specific classes.
@author sbk
-
io.crate.planner.symbol.Value
-
javarepl.expressions.Value
-
javax.jcr.Value
-
javax.swing.text.html.CSS.Value
-
jimmm.data.Card.Value
-
jm.audio.synth.Value
The Value object provides a mechanism for passing audio objects static values. This can be useful for seeding wavetables with fixed frequency information for example (as in the SimpleFM instrument example code).
Fixed values can use a value set by the constructor or can take one of a notes attributes as its value by specifying that attributes index value in the appropriate constructor (see the noteAttribute varibable for the note attributes index).
@author Andrew Sorensen
@version 1.0, Sun Feb 25 18:42:48 2001
-
joust.utils.tree.evaluation.Value
Represents the current value of a variable in an EvaluationContext.
-
jsonij.json.Value
Value is extended by every JSON type implementation. This class provides generic access to all values to make life a little easier when traversing the JSON Document.
@author openecho
@version 1.0.0
-
kilim.analysis.Value
A SSA value that represents all objects produced at a particular location in the code. Value objects are used by dataflow analysis (@see BasicBlock)
-
lcmc.common.domain.Value
-
macromedia.asc.semantics.Value
The value class from which all other values derive. Immediate children are ObjectValue, and ReferenceValue.
@author Jeff Dyer
-
net.fortuna.ical4j.model.parameter.Value
-
net.hamnaberg.json.Value
-
net.sf.cpsolver.ifs.model.Value
-
net.sf.saxon.value.Value
A value is the result of an expression but it is also an expression in its own right. Note that every value can be regarded as a sequence - in many cases, a sequence of length one.
-
net.sourceforge.jFuzzyLogic.membership.Value
A value can be either REAL, INT, BOOL or a reference to variable
@author pcingola@users.sourceforge.net
-
nginx.clojure.asm.tree.analysis.Value
An immutable symbolic value for semantic interpretation of bytecode.
@author Eric Bruneton
-
oracle.kv.Value
-
org.adbcj.Value
Holds a field value. The {@code Value} methods attempt to convert the field value to Java types.
@author Mike Heath
-
org.apache.accumulo.core.data.Value
A byte sequence that is usable as a key or value. Based on {@link org.apache.hadoop.io.BytesWritable} only this class is NOT resizable and DOES NOTdistinguish between the size of the sequence and the current capacity as {@link org.apache.hadoop.io.BytesWritable} does. Hence its comparatively'immutable'.
-
org.apache.batik.css.engine.value.Value
This interface represents a property value.
@author
Stephane Hillion
@version $Id: Value.java,v 1.1 2002/03/18 10:28:22 hillion Exp $
-
org.apache.bookkeeper.metastore.Value
-
org.apache.camel.avro.generated.Value
-
org.apache.directory.api.ldap.model.entry.Value
A interface for wrapping attribute values stored into an EntryAttribute. These values can be a String or a byte[].
@author
Apache Directory Project
-
org.apache.directory.ldapstudio.browser.core.internal.model.Value
-
org.apache.directory.shared.asn1.ber.tlv.Value
-
org.apache.directory.studio.ldapbrowser.core.internal.model.Value
-
org.apache.directory.studio.ldapbrowser.core.model.impl.Value
-
org.apache.flex.forks.batik.css.engine.value.Value
This interface represents a property value.
@author
Stephane Hillion
@version $Id: Value.java,v 1.3 2004/08/18 07:12:53 vhardy Exp $
-
org.apache.flink.runtime.operators.testutils.TestData.Value
-
org.apache.flink.types.Value
Basic value interface for types that act as serializable values.
This interface extends {@link IOReadableWritable} and requires to implementthe serialization of its value.
@see org.apache.flink.core.io.IOReadableWritable
-
org.apache.harmony.jpda.tests.framework.jdwp.Value
This class represents generic value used in JDWP packets.
-
org.apache.isis.applib.annotation.Value
-
org.apache.ode.bpel.evar.ExternalVariableModule.Value
-
org.apache.openjpa.kernel.exps.Value
Interface for any non-operator in a query filter, including constants, variables, and object fields.
@author Abe White
-
org.apache.openjpa.lib.conf.Value
A configuration value.
@author Marc Prud'hommeaux
-
org.apache.poi.ss.formula.functions.Value
Implementation for Excel VALUE() function.
Syntax:
VALUE(
text)
Converts the text argument to a number. Leading and/or trailing whitespace is ignored. Currency symbols and thousands separators are stripped out. Scientific notation is also supported. If the supplied text does not convert properly the result is
#VALUE! error. Blank string converts to zero.
-
org.apache.shale.tiger.managed.Value
-
org.apache.slide.projector.value.Value
-
org.apache.synapse.mediators.Value
Represents a Value Handling both static and dynamic(Xpath) keys. User can give Xpath expression as a key and derive real key based on message context
-
org.apache.tapestry.ioc.annotations.Value
-
org.apache.tapestry5.ioc.annotations.Value
A mixin for a text field that allows for autocompletion of text fields. This is based on Prototype's autocompleter control.
The mixin renders an (initially invisible) progress indicator after the field (it will also be after the error icon most fields render). The progress indicator is made visible during the request to the server. The mixin then renders a <div> that will be filled in on the client side with dynamically obtained selections.
Multiple selection on the client is enabled by binding the tokens parameter (however, the mixin doesn't help split multiple selections up on the server, that is still your code's responsibility).
The container is responsible for providing an event handler for event "providecompletions". The context will be the partial input string sent from the client. The return value should be an array or list of completions, in presentation order. I.e.
String[] onProvideCompletionsFromMyField(String input) { return . . .; }
-
org.apache.ws.jaxme.sqls.Value
-
org.apache.xindice.core.data.Value
Value is the primary base class for all data storing objects. The content window of Value objects are immutable, but the underlying byte array is not.
-
org.apche.ode.bpel.evar.ExternalVariableModule.Value
-
org.ardverk.dht.rsrc.Value
The {@link Message}'s value.
@see Message#getValue()
-
org.cfeclipse.cfml.dictionary.Value
@author RobThis is really just a string wrapper. Its a possible value for an attribute its only here to abstract it a bit and to give some room to play for future additions
-
org.chromium.debug.core.model.Value
A generic (non-array) implementation of IValue using a JsValue instance.
-
org.cipango.console.Row.Value
-
org.corrib.s3b.mbb.beans.rdf.Value
The supertype of all RDF objects.
@author Mariusz Cygan
-
org.dayatang.domain.Value
值。这个类主要用于实体类的自定义属性,例如动态地给Employee类添加一批属性, 每个属性都记录数据类型和字符串形式的值
@author chencao
-
org.dcm4che3.data.Value
-
org.destecs.core.simulationengine.script.values.Value
-
org.dmg.pmml31.ValueDocument.Value
-
org.drools.workbench.models.guided.dtree.shared.model.values.Value
-
org.dspace.app.xmlui.wing.element.Value
This class represents field values.
@author Scott Phillips
-
org.eclipse.jdt.internal.debug.eval.ast.instructions.Value
Pop a variable from the stack and push its value.
-
org.ethereum.util.Value
Class to encapsulate an object and provide utilities for conversion
-
org.exist.storage.btree.Value
Value is the primary base class for all data storing objects. The content window of Value objects are immutable, but the underlying byte array is not.
-
org.exolab.castor.tests.framework.testDescriptor.Value
-
org.freehep.util.Value
A class that can represent any Java object or primitive. Unlike the built-in primitive proxies (Double, Integer etc) it is mutable. It is used to allow values to be used without needing overloaded methods for each primitive type, and without the overhead of object creation/deletion. When a value is returned by an Object method it should be assumed to be valid only until the next method call to that Object. The use of Value should be avoided in multi-threaded environments.
@author tonyj
@version $Id: Value.java 9133 2006-10-13 16:25:43Z turri $
-
org.gdbms.engine.values.Value
Datatypes must implement this interface in order to the drivers to return that datatype. The implementation can inherit from AbstractValue or must implement equals and hashCode in the way explained at doEquals method javadoc
-
org.graphstream.ui.graphicGraph.stylesheet.Value
A value and the units of the value.
As a style sheet may express values in several different units. This class purpose is to pack the value and the units it is expressed in into a single object.
-
org.h2.value.Value
This is the base class for all value classes. It provides conversion and comparison methods.
-
org.hibernate.mapping.Value
A value is anything that is persisted by value, instead of by reference. It is essentially a Hibernate Type, together with zero or more columns. Values are wrapped by things with higher level semantics, for example properties, collections, classes.
@author Gavin King
-
org.hibernate.metamodel.relational.Value
Models a value within a {@link ValueContainer}. This will generally be either a {@link Column column} or a{@link DerivedValue derived value}, but we also allow the notion of {@link Tuple} at this level
@author Steve Ebersole
-
org.jacorb.ir.gui.typesystem.Value
The interface of our representation of value types.
-
org.jboss.reflect.spi.Value
-
org.jclouds.dynect.v3.domain.RecordSet.Value
Implementation of {@link ApiMetadata} for DynECT 1.0 API
@author Adrian Cole
-
org.jnode.configure.PropertySet.Value
-
org.jogger.http.Value
-
org.jresearch.flexess.models.expression.Value
A representation of the model object '
Value'.
The following features are supported:
- {@link org.jresearch.flexess.models.expression.Value#getSource Source}
@see org.jresearch.flexess.models.expression.ExpressionPackage#getValue()
@model
@generated
-
org.jruby.pg.internal.Value
-
org.kapott.hbci.structures.Value
Darstellung eines Geldbetrages.
-
org.lealone.value.Value
This is the base class for all value classes. It provides conversion and comparison methods.
-
org.mc4j.ems.store.Value
@author Greg Hinkle (ghinkle@users.sourceforge.net), Apr 12, 2005
@version $Revision: 1.2 $($Author: ghinkl $ / $Date: 2006/04/12 19:11:34 $)
-
org.milyn.javabean.Value
; <header> <y:date xmlns:y="http://y">Wed Nov 15 13:45:28 EST 2006</y:date> <customer number="123123">Joe</customer> <privatePerson></privatePerson> </header> <order-items> <!-- .... --!> </order-items> </order>
The Binding Configuration and Execution Code
The configuration code (Note: Smooks instance defined and instantiated globally):
Smooks smooks = new Smooks(); Value customerNumberValue = new Value( "customerNumber", "customer/@number") .setDecoder("Integer"); Value customerNameValue = new Value( "customerName", "customer") .setDefault("Unknown"); smooks.addVisitors(customerNumberValue); smooks.addVisitors(customerNameValue);
And the execution code:
JavaResult result = new JavaResult(); smooks.filterSource(new StreamSource(orderMessageStream), result); Integer customerNumber = (Integer) result.getBean("customerNumber"); String customerName = (String) result.getBean("customerName");
@author
maurice.zeijen@smies.com
@see Bean
-
org.msgpack.type.Value
-
org.msgpack.value.Value
Value is a holder of a message-packed value.
-
org.neo4j.cypherdsl.query.Value
Handles a single value that corresponds to any expression. Optionally can be a part of binary operation.
-
org.netbeans.server.uihandler.LogsManager.Value
-
org.newdawn.slick.font.effects.ConfigurableEffect.Value
-
org.newdawn.slick.particles.ConfigurableEmitter.Value
-
org.nlpcn.commons.lang.tire.domain.Value
-
org.objectweb.asm.tree.analysis.Value
An immutable symbolic value for semantic interpretation of bytecode.
@author Eric Bruneton
-
org.ofbiz.sql.Value
-
org.openiaml.model.model.Value
-
org.openrdf.model.Value
The supertype of all RDF model objects (URIs, blank nodes and literals).
-
org.overturetool.vdmj.values.Value
-
org.pdf4j.saxon.value.Value
A value is the result of an expression but it is also an expression in its own right. Note that every value can be regarded as a sequence - in many cases, a sequence of length one.
-
org.polyglotted.xpathstax.data.Value
-
org.rhq.modules.plugins.jbossas7.ModuleOptionsComponent.Value
Component classes for network interfaces
@author Heiko W. Rupp
-
org.springframework.beans.factory.annotation.Value
-
org.wso2.carbon.mediator.calltemplate.util.Value
Represents a Value Handling both static and dynamic(Xpath) keys. User can give Xpath expression as a key and derive real key based on message context
-
org.xilaew.atg.model.tests.Value
A representation of the model object '
Value'.
The following features are supported:
- {@link org.xilaew.atg.model.tests.Value#getName Name}
- {@link org.xilaew.atg.model.tests.Value#getValue Value}
- {@link org.xilaew.atg.model.tests.Value#getVariable Variable}
@see org.xilaew.atg.model.tests.TestsPackage#getValue()
@model
@generated
-
org.yinwang.yin.value.Value
-
proguard.evaluation.value.Value
This abstract class represents a partially evaluated value.
@author Eric Lafortune
-
rocket.beans.rebind.value.Value
Concrete values are values for constructor or properties these typically include.
- null references
- String literals
- bean references
- nested beans
- lists
- sets
- maps
@author Miroslav Pokorny
-
rocks.xmpp.extensions.rpc.model.Value
The value type, which is used by XML-RPC.
@author Christian Schudt
-
ru.snake.spritepacker.writer.expression.value.Value
-
sisc.data.Value
-
soot.Value
-
test.text.Value
-
water.Value
The core Value stored in the distributed K/V store. It contains an underlying byte[] which may be spilled to disk and freed by the {@link MemoryManager}.
-
wycs.core.Value
-
wyvern.tools.typedAST.interfaces.Value
-
xbird.storage.index.Value
@author Makoto YUI (yuin405+xbird@gmail.com)