public interface ConstantBindingBuilder
Modifier and Type | Method and Description |
---|---|
void |
to(boolean value)
Binds constant to the given value.
|
void |
to(byte value)
Binds constant to the given value.
|
void |
to(char value)
Binds constant to the given value.
|
void |
to(Class<?> value)
Binds constant to the given value.
|
void |
to(double value)
Binds constant to the given value.
|
<E extends Enum<E>> |
to(E value)
Binds constant to the given value.
|
void |
to(float value)
Binds constant to the given value.
|
void |
to(int value)
Binds constant to the given value.
|
void |
to(long value)
Binds constant to the given value.
|
void |
to(short value)
Binds constant to the given value.
|
void |
to(String value)
Binds constant to the given value.
|
void to(String value)
void to(int value)
void to(long value)
void to(boolean value)
void to(double value)
void to(float value)
void to(short value)
void to(char value)
void to(byte value)
void to(Class<?> value)
<E extends Enum<E>> void to(E value)