[Index]

Usefull Enums for EnumPropertyType


A list of Enums which easily can be used with the EnumPropertyType, where there isnt a distinct PropertyType implementation for that particular constant list.
When ever we encounter a Enum (or a list of constants which we have made a Enum version of ) which can be usefull we list them here.
Enum Class Enum implementation of EnumPropertyType creation Since JavaDoc
dk.heick.properties.types.enums.AudioFileFormatType javax.sound.sampled.AudioFileFormat.Type
	Property<AudioFileFormatType> P_ENUM_AUDIO_FILE_TYPE = 
	new Property<AudioFileFormatType>("p.property.name",
	new EnumPropertyType<AudioFileFormatType>(AudioFileFormatType.class));
	
1.9 JavaAPI Doc
dk.heick.properties.types.enums.PageAttributesMediaType java.awt.PageAttributes.MediaType
	Property<PageAttributesMediaType> P_ENUM_PAGE_MEDIA_TYPE = 
	new Property<PageAttributesMediaType>("p.property.name",
	new EnumPropertyType<PageAttributesMediaType>(PageAttributesMediaType.class));
	
1.9 JavaAPI Doc
java.net.Proxy.Type -
	Property<Proxy.Type> P_ENUM_PROXY_TYPE = 
	new Property<Proxy.Type>("p.property.name",
	new EnumPropertyType<Proxy.Type>(Proxy.Type.class));
	
-
Enum Class Enum implementation of EnumPropertyType creation Since JavaDoc