Interface ConstantBindingBuilder
- All Known Implementing Classes:
ConstantBindingBuilderImpl
public interface ConstantBindingBuilder
Binds to a constant value.
-
Method Summary
Modifier and TypeMethodDescriptionvoidto(boolean value)Binds constant to the given value.voidto(char value)Binds constant to the given value.voidto(double value)Binds constant to the given value.voidto(float value)Binds constant to the given value.voidto(int value)Binds constant to the given value.voidto(long value)Binds constant to the given value.voidto(short value)Binds constant to the given value.<E extends Enum<E>>
voidto(E value)Binds constant to the given value.voidBinds constant to the given value.voidBinds constant to the given value.
-
Method Details
-
to
Binds constant to the given value. -
to
void to(int value)Binds constant to the given value. -
to
void to(long value)Binds constant to the given value. -
to
void to(boolean value)Binds constant to the given value. -
to
void to(double value)Binds constant to the given value. -
to
void to(float value)Binds constant to the given value. -
to
void to(short value)Binds constant to the given value. -
to
void to(char value)Binds constant to the given value. -
to
Binds constant to the given value. -
to
Binds constant to the given value.
-