Uses of Interface
com.github.tadukoo.util.pojo.MappedPojo
Packages that use MappedPojo
-
Uses of MappedPojo in com.github.tadukoo.util.pojo
Subinterfaces of MappedPojo in com.github.tadukoo.util.pojoModifier and TypeInterfaceDescriptioninterface
Ordered Mapped Pojo represents aMappedPojo
where the key order matters.Classes in com.github.tadukoo.util.pojo that implement MappedPojoModifier and TypeClassDescriptionclass
Abstract Mapped Pojo is a simple implementation of theMappedPojo
interface that uses a HashMap as its backing Map.class
Abstract Ordered Mapped Pojo is a simple implementation ofOrderedMappedPojo
.Methods in com.github.tadukoo.util.pojo with type parameters of type MappedPojoModifier and TypeMethodDescriptiondefault <T extends MappedPojo>
List<T>MappedPojo.getListItem
(String key, Class<T> clazz) Helper method to cast an item being stored in this Mapped Pojo as a proper List easily.default <T extends MappedPojo>
List<T>MappedPojo.getListItemNoThrow
(EasyLogger logger, String key, Class<T> clazz) Helper method to cast an item being stored in this Mapped Pojo as a proper List easily.default <T extends MappedPojo>
List<T>MappedPojo.getListItemNoThrow
(String key, Class<T> clazz) Helper method to cast an item being stored in this Mapped Pojo as a proper List easily.default <T extends MappedPojo>
TMappedPojo.getPojoItem
(String key, Class<T> clazz) Helper method to cast an item being stored in this Mapped Pojo as another MappedPojo object easily.default <T extends MappedPojo>
TMappedPojo.getPojoItemNoThrow
(EasyLogger logger, String key, Class<T> clazz) Helper method to cast an item being stored in this Mapped Pojo as another MappedPojo object easily.default <T extends MappedPojo>
TMappedPojo.getPojoItemNoThrow
(String key, Class<T> clazz) Helper method to cast an item being stored in this Mapped Pojo as another MappedPojo object easily.Constructors in com.github.tadukoo.util.pojo with parameters of type MappedPojoModifierConstructorDescriptionprotected
AbstractMappedPojo
(MappedPojo pojo) Creates a new Mapped Pojo, using the map from the given pojo.protected