A B C D F G I L M P S V 

A

accept(Class<Boolean>) - Method in class com.coderskitchen.cdiproperties.converter.BooleanConverter
 
accept(Class<Byte>) - Method in class com.coderskitchen.cdiproperties.converter.ByteConverter
 
accept(Class<Double>) - Method in class com.coderskitchen.cdiproperties.converter.DoubleConverter
 
accept(Class<Float>) - Method in class com.coderskitchen.cdiproperties.converter.FloatConverter
 
accept(Class<Integer>) - Method in class com.coderskitchen.cdiproperties.converter.IntegerConverter
 
accept(Class<Long>) - Method in class com.coderskitchen.cdiproperties.converter.LongConverter
 
accept(Class<Short>) - Method in class com.coderskitchen.cdiproperties.converter.ShortConverter
 
accept(Class<T>) - Method in interface com.coderskitchen.cdiproperties.converter.spi.ValueConverter
Returns true, if this convert can convert values of type class
accept(Class<String>) - Method in class com.coderskitchen.cdiproperties.converter.StringConverter
 

B

BooleanConverter - Class in com.coderskitchen.cdiproperties.converter
Converts to boolean Created by peter on 2/11/14.
BooleanConverter() - Constructor for class com.coderskitchen.cdiproperties.converter.BooleanConverter
 
ByteConverter - Class in com.coderskitchen.cdiproperties.converter
Converts to byte Created by peter on 2/11/14.
ByteConverter() - Constructor for class com.coderskitchen.cdiproperties.converter.ByteConverter
 

C

CDIPropertiesExtension - Class in com.coderskitchen.cdiproperties
This extension enables CDI to inject properties from a property file.
CDIPropertiesExtension() - Constructor for class com.coderskitchen.cdiproperties.CDIPropertiesExtension
 
com.coderskitchen.cdiproperties - package com.coderskitchen.cdiproperties
 
com.coderskitchen.cdiproperties.converter - package com.coderskitchen.cdiproperties.converter
 
com.coderskitchen.cdiproperties.converter.spi - package com.coderskitchen.cdiproperties.converter.spi
 
convert(Object) - Method in class com.coderskitchen.cdiproperties.converter.BooleanConverter
 
convert(Object) - Method in class com.coderskitchen.cdiproperties.converter.ByteConverter
 
convert(Object) - Method in class com.coderskitchen.cdiproperties.converter.DoubleConverter
 
convert(Object) - Method in class com.coderskitchen.cdiproperties.converter.FloatConverter
 
convert(Object) - Method in class com.coderskitchen.cdiproperties.converter.IntegerConverter
 
convert(Object) - Method in class com.coderskitchen.cdiproperties.converter.LongConverter
 
convert(Object) - Method in class com.coderskitchen.cdiproperties.converter.ShortConverter
 
convert(Object) - Method in interface com.coderskitchen.cdiproperties.converter.spi.ValueConverter
Convert value to value of type T
convert(Object) - Method in class com.coderskitchen.cdiproperties.converter.StringConverter
 

D

dispose(T) - Method in class com.coderskitchen.cdiproperties.PropertyInjectionTarget
 
DoubleConverter - Class in com.coderskitchen.cdiproperties.converter
Created by peter on 2/11/14.
DoubleConverter() - Constructor for class com.coderskitchen.cdiproperties.converter.DoubleConverter
 

F

findConverterForFieldType(Class<?>) - Static method in class com.coderskitchen.cdiproperties.ValueConverterFactory
Finds a accepting converter for the given type.
FloatConverter - Class in com.coderskitchen.cdiproperties.converter
Converts a given value into a float representation
FloatConverter() - Constructor for class com.coderskitchen.cdiproperties.converter.FloatConverter
 

G

getInjectionPoints() - Method in class com.coderskitchen.cdiproperties.PropertyInjectionTarget
 

I

initializePropertyLoading(ProcessInjectionTarget<T>) - Method in class com.coderskitchen.cdiproperties.CDIPropertiesExtension
Prepares the injection process of properties from a property file.
inject(T, CreationalContext<T>) - Method in class com.coderskitchen.cdiproperties.PropertyInjectionTarget
 
IntegerConverter - Class in com.coderskitchen.cdiproperties.converter
converts value objects to their Integer representation Created by peter on 2/4/14.
IntegerConverter() - Constructor for class com.coderskitchen.cdiproperties.converter.IntegerConverter
 

L

LongConverter - Class in com.coderskitchen.cdiproperties.converter
converts value objects to their Integer representation Created by peter on 2/4/14.
LongConverter() - Constructor for class com.coderskitchen.cdiproperties.converter.LongConverter
 

M

MESSAGE_NO_CONVERTER_FOUND - Static variable in class com.coderskitchen.cdiproperties.PropertyInjectionTarget
 
MESSAGE_NO_VALUE_FOUND - Static variable in class com.coderskitchen.cdiproperties.PropertyInjectionTarget
 

P

postConstruct(T) - Method in class com.coderskitchen.cdiproperties.PropertyInjectionTarget
 
preDestroy(T) - Method in class com.coderskitchen.cdiproperties.PropertyInjectionTarget
 
produce(CreationalContext<T>) - Method in class com.coderskitchen.cdiproperties.PropertyInjectionTarget
 
PROPERTIES_FILE_NOT_FOUND - Static variable in class com.coderskitchen.cdiproperties.CDIPropertiesExtension
Exception message when the properties couldn't found
Property - Annotation Type in com.coderskitchen.cdiproperties
This annotation specifies the injection point of a property The property is loaded from the file specified by @PropertyFile annotation
PROPERTY_BASE_FOLDER - Static variable in class com.coderskitchen.cdiproperties.CDIPropertiesExtension
Specifies the base properties folder for the lookup in the file system
PROPERTY_PREFER_FILE_SYSTEM - Static variable in class com.coderskitchen.cdiproperties.CDIPropertiesExtension
Specifies that the lookup should first attempt to load the file from the file system

By default the classpath is preferred

PropertyFile - Annotation Type in com.coderskitchen.cdiproperties
This annotation gives a hint where the properties file is located
PropertyInjectionTarget<T> - Class in com.coderskitchen.cdiproperties
Injection target implementation that takes care of injecting properties read from a property file Created by peter on 2/4/14.
PropertyInjectionTarget(Map<Field, Object>, ProcessInjectionTarget<T>, InjectionTarget<T>) - Constructor for class com.coderskitchen.cdiproperties.PropertyInjectionTarget
Constructor accepting all required values for injection

S

ShortConverter - Class in com.coderskitchen.cdiproperties.converter
Converts to short Created by peter on 2/11/14.
ShortConverter() - Constructor for class com.coderskitchen.cdiproperties.converter.ShortConverter
 
StringConverter - Class in com.coderskitchen.cdiproperties.converter
Converts value objects to their String representation Created by peter on 2/4/14.
StringConverter() - Constructor for class com.coderskitchen.cdiproperties.converter.StringConverter
 

V

ValueConverter<T> - Interface in com.coderskitchen.cdiproperties.converter.spi
Generic converter.
ValueConverterFactory - Class in com.coderskitchen.cdiproperties
Factory for making the lookup of value converter Created by peter on 2/21/14.
A B C D F G I L M P S V