Package | Description |
---|---|
org.grouplens.grapht.annotation |
Annotations to control the configuration injector.
|
Modifier and Type | Method and Description |
---|---|
static <T extends Annotation> |
AnnotationBuilder.of(Class<T> annotType)
Constructor method to allow the builder type to be inferred.
|
<A extends Annotation> |
AnnotationBuilder.set(String name,
A[] value)
As
set(String, boolean) but assigns an Annotation array to the
value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
Annotation value)
As
set(String, boolean) but assigns an Annotation instance to
the value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
boolean value)
Set the annotation defined member given by name to the boolean
value.
|
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
boolean[] value)
As
set(String, boolean) but assigns a boolean[] value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
byte value)
As
set(String, boolean) but assigns a byte value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
byte[] value)
As
set(String, boolean) but assigns a byte[] value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
char value)
As
set(String, boolean) but assigns a char value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
char[] value)
As
set(String, boolean) but assigns a char[] value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
Class<? extends Class> value)
As
set(String, Class) but 'assigns an class value'
.A NullPointerException is thrown if value is null. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
double value)
As
set(String, boolean) but assigns a double value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
double[] value)
As
set(String, boolean) but assigns a double[] value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
Enum<? extends Enum> value)
As
set(String, boolean) but 'assigns an enum value'
.A NullPointerException is thrown if value is null. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
float value)
As
set(String, boolean) but assigns a float value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
float[] value)
As
set(String, boolean) but assigns a float[] value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
int value)
As
set(String, boolean) but assigns an int value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
int[] value)
As
set(String, boolean) but assigns a int[] value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
long value)
As
set(String, boolean) but assigns a long value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
long[] value)
As
set(String, boolean) but assigns a long[] value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
short value)
As
set(String, boolean) but assigns a short value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
short[] value)
As
set(String, boolean) but assigns a short[] value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
String value)
As
set(String, boolean) but assigns a String value. |
AnnotationBuilder<T> |
AnnotationBuilder.set(String name,
String[] value)
As
set(String, boolean) but assigns a String[] value. |
<A extends Annotation> |
AnnotationBuilder.setValue(A value)
Set the 'value' attribute to the given annotation.
|
<A extends Annotation> |
AnnotationBuilder.setValue(A[] value)
Set the 'value' attribute to the given annotation array.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(boolean value)
Set the 'value' attribute to the given boolean value.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(boolean[] value)
Set the 'value' attribute to the given boolean array.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(byte value)
Set the 'value' attribute to the given byte value.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(byte[] value)
Set the 'value' attribute to the given byte array.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(char value)
Set the 'value' attribute to the given char value.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(char[] value)
Set the 'value' attribute to the given char array.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(Class<? extends Class> value)
Set the 'value' attribute to the given class
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(double value)
Set the 'value' attribute to the given double value.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(double[] value)
Set the 'value' attribute to the given double array.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(Enum<? extends Enum> value)
Set the 'value' attribute to the given enum.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(float value)
Set the 'value' attribute to the given float value.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(float[] value)
Set the 'value' attribute to the given float array.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(int value)
Set the 'value' attribute to the given int value.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(int[] value)
Set the 'value' attribute to the given int array.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(long value)
Set the 'value' attribute to the given long value.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(long[] value)
Set the 'value' attribute to the given long array.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(short value)
Set the 'value' attribute to the given short value.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(short[] value)
Set the 'value' attribute to the given short array.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(String value)
Set the 'value' attribute to the given String value.
|
AnnotationBuilder<T> |
AnnotationBuilder.setValue(String[] value)
Set the 'value' attribute to the given String array.
|
Copyright © 2016 GroupLens Research. All rights reserved.