Uses of Interface
com.speedment.common.codegen.model.Value
-
Packages that use Value Package Description com.speedment.common.codegen.constant This package contains constant classes.com.speedment.common.codegen.model Models for typical object-oriented language building blocks are located in this package.com.speedment.common.codegen.model.trait Common traits used by the codegen models located in thecom.speedment.codegen.lang.modelpackage.com.speedment.common.codegen.model.value This package contains value classes. -
-
Uses of Value in com.speedment.common.codegen.constant
Fields in com.speedment.common.codegen.constant declared as Value Modifier and Type Field Description static Value<?>DefaultValue. EMPTY_STRINGstatic Value<?>DefaultValue. NULLMethods in com.speedment.common.codegen.constant that return Value Modifier and Type Method Description static Value<String>DefaultValue. string(String text)Creates a 'string' value with the specified content.Methods in com.speedment.common.codegen.constant that return types with arguments of type Value Modifier and Type Method Description Optional<Value<?>>DefaultAnnotationUsage. getValue()List<Map.Entry<String,Value<?>>>DefaultAnnotationUsage. getValues()Methods in com.speedment.common.codegen.constant with parameters of type Value Modifier and Type Method Description AnnotationUsageDefaultAnnotationUsage. put(String key, Value<?> val)Use the specified key-value pair when referencing the annotation.AnnotationUsageDefaultAnnotationUsage. set(Value<?> val)Sets the value of this model. -
Uses of Value in com.speedment.common.codegen.model
Methods in com.speedment.common.codegen.model that return Value Modifier and Type Method Description Value<V>Value. setValue(V value)Sets the inner value of this.Methods in com.speedment.common.codegen.model that return types with arguments of type Value Modifier and Type Method Description List<Map.Entry<String,Value<?>>>AnnotationUsage. getValues()Returns a list of all the key-value pairs in this model.List<Value<?>>EnumConstant. getValues()Returns a modifiable list of all the construction parameters used when instantiating this enum constant.Methods in com.speedment.common.codegen.model with parameters of type Value Modifier and Type Method Description default EnumConstantEnumConstant. add(Value<?> value)Adds the specified construction parameter to this constant.static InvocationValueValue. ofInvocation(Type owner, String method, Value<?>... args)Returns a newInvocationValuerepresenting a call to the specified static method in the specified class with the specified arguments.static InvocationValueValue. ofInvocation(String method, Value<?>... args)Returns a newInvocationValuerepresenting a call to the specified local method with the specified arguments.AnnotationUsageAnnotationUsage. put(String key, Value<?> val)Use the specified key-value pair when referencing the annotation.Method parameters in com.speedment.common.codegen.model with type arguments of type Value Modifier and Type Method Description static ArrayValueValue. ofArray(List<Value<?>> values)Returns a newArrayValuewith the specified values set. -
Uses of Value in com.speedment.common.codegen.model.trait
Methods in com.speedment.common.codegen.model.trait that return types with arguments of type Value Modifier and Type Method Description Optional<Value<?>>HasValue. getValue()Returns the value of this model.List<Value<?>>HasValues. getValues()Returns a list of all the values in this model.Methods in com.speedment.common.codegen.model.trait with parameters of type Value Modifier and Type Method Description default <E> THasValues. add(Value<E> generic)Adds the specifiedValueto this model.default THasFields. constant(String name, Type type, Value<?> value)Creates a public final staticFieldwith the specified value and adds it to this model.THasValue. set(Value<?> val)Sets the value of this model. -
Uses of Value in com.speedment.common.codegen.model.value
Subinterfaces of Value in com.speedment.common.codegen.model.value Modifier and Type Interface Description interfaceAnonymousValueA value representing a reference to an abstract implementation used anonymously to set a field.interfaceArrayValueinterfaceBooleanValueinterfaceEnumValueinterfaceInvocationValueA value calculated by invoking a method.interfaceNullValueinterfaceNumberValueinterfaceReferenceValueinterfaceTextValue
-