A B C D E F G H I J K L M N O P Q R S T U V W X _

M

main(String[]) - Static method in class r01f.httpclient.HttpClient
 
main(String[]) - Static method in class r01f.util.types.Strings
 
makeAccessible(AccessibleObject) - Static method in class r01f.reflection.ReflectionUtils
Establece el flag accessible en el AccessibleObject
map() - Method in class r01f.types.collections.MapsWrappers.WrappedMap
 
mapFieldKeyValueComponentTypes(Field) - Static method in class r01f.reflection.ReflectionUtils
Devuelve el tipo de elementos la clave y valor de un Mapa Map parametrizado (Map) NOTA: Debido al type erasure de los genericos en java el tipo de un List SOLO se puede obtener si se trata de un field de una clase (miembro), pero NO si se trata de una variable dentro del flujo
MappingReflectionUtils - Class in r01f.marshalling.simple
Utilidades Reflection para el mapeador de xml a objetos
MappingReflectionUtils() - Constructor for class r01f.marshalling.simple.MappingReflectionUtils
 
MapsWrappers - Class in r01f.types.collections
Fluent API para operaciones con mapas
MapsWrappers() - Constructor for class r01f.types.collections.MapsWrappers
 
MapsWrappers.MapDifferences<K,V> - Class in r01f.types.collections
 
MapsWrappers.MapDifferences(MapDifference<K, V>) - Constructor for class r01f.types.collections.MapsWrappers.MapDifferences
 
MapsWrappers.WrappedMap<K,V> - Class in r01f.types.collections
 
MapsWrappers.WrappedMap(Map<K, V>) - Constructor for class r01f.types.collections.MapsWrappers.WrappedMap
 
MarsallerGuiceModule - Class in r01f.marshalling
 
MarsallerGuiceModule() - Constructor for class r01f.marshalling.MarsallerGuiceModule
 
Marshaller - Interface in r01f.marshalling
Marshaller de XML a objetos [Creacción del Marshaller]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]]] ---------------------------------------------------------------------------- [Opción 1]: Inyectar el Marshaller utilizando GUICE En la clase donde se quiere inyectar el Marshaller crear un miembro anotado como public class MyMarshallerService {
MarshallerException - Exception in r01f.marshalling
Excepción que se lanza en el proceso de creacion de Objetos a partir de xml o en el proceso de creaccion de xml a partir de objetos Fecha de creación: (17/11/001)
MarshallerException() - Constructor for exception r01f.marshalling.MarshallerException
 
MarshallerException(String, Throwable) - Constructor for exception r01f.marshalling.MarshallerException
 
MarshallerException(String) - Constructor for exception r01f.marshalling.MarshallerException
 
MarshallerException(Throwable) - Constructor for exception r01f.marshalling.MarshallerException
 
MarshallerMappings - Interface in r01f.marshalling
Carga la configuración de marshalling, bien desde clases anotadas, bien desde algún fichero de configuración y en su caso custodia (guarda y cachea) esta configuración
MarshallerMappingsFromXMLLoader - Class in r01f.marshalling.simple
Clase auxiliar que se encarga de cargar los mapeos de beans a partir de un XML de mapeo Obtiene una representación en memoria de la definición en XML de una jerarquia de clases.
MarshallerMappingsFromXMLLoader() - Constructor for class r01f.marshalling.simple.MarshallerMappingsFromXMLLoader
 
MarshallerProvider - Class in r01f.marshalling
Factoría de Marshallers
MarshallerProvider() - Constructor for class r01f.marshalling.MarshallerProvider
 
matcher(String) - Method in class r01f.util.types.Strings.StringWrapper
Devuelve un matcher sobre la cadena
matches(TypeLiteral<?>) - Method in class r01f.locale.I18NGuiceModule.I18NLocalizedTypeAnnotationMatcher
 
MAX_VALUE - Static variable in class r01f.guids.HighLowKey
 
MAXIMUM_CAPACITY - Static variable in class r01f.types.collections.SoftHashMap
 
MEMBER - Static variable in class r01f.marshalling.simple.MarshallerMappingsFromXMLLoader
 
message(String) - Method in class r01f.locale.I18NBundle
Devuelve un mensaje del bundle a partir de su clave
message(String, Object...) - Method in class r01f.locale.I18NBundle
Devuelve un mensaje del bundle a partir de su clave
method(String) - Method in class r01f.reflection.BeanInstanceReflection
Busca el metodo que se pasa como parameto, recorriendo toda la jerarquia de herencia PROBLEMA: class.getMethods() devuelve solo metodos PUBLICOS class.getDeclaredMethods() devuelve metodos publicos y privados declarados
method(String, Class<?>...) - Method in class r01f.reflection.BeanInstanceReflection
Busca el metodo que se pasa como parameto, recorriendo toda la jerarquia de herencia PROBLEMA: class.getMethods() devuelve solo metodos PUBLICOS class.getDeclaredMethods() devuelve metodos publicos y privados declarados
method(Method) - Method in class r01f.reflection.BeanInstanceReflection
Obtiene un wrapper para la invocación del método
method(String) - Static method in class r01f.reflection.fluent.FluentReflection
Starting point of the fluent interface for invoking methods via reflection.
method(Class<?>, String, Class<?>...) - Static method in class r01f.reflection.ReflectionUtils
Busca el metodo que se pasa como parameto, recorriendo toda la jerarquia de herencia PROBLEMA: class.getMethods() devuelve solo metodos PUBLICOS class.getDeclaredMethods() devuelve metodos publicos y privados declarados
MethodInvoker<T> - Class in r01f.reflection.fluent
Method invocation using reflection
MethodInvoker(Object, Method) - Constructor for class r01f.reflection.fluent.MethodInvoker
 
MethodInvokeReflection - Class in r01f.reflection
 
MethodInvokeReflection(Class<?>, Object, Method) - Constructor for class r01f.reflection.MethodInvokeReflection
 
methodName - Variable in class r01f.exceptions.EnrichedThrowableCustomizations.TraceInfo
 
MethodParameterTypes<T> - Class in r01f.reflection.fluent
Encapsulates a method parameter type
MethodParameterTypes(String, Class<?>[]) - Constructor for class r01f.reflection.fluent.MethodParameterTypes
 
MethodReflection - Class in r01f.reflection.fluent
Method Reflection Usage example: // Equivalent to call 'person.setName("Luke")' Reflection.method("setName").withParameterTypes(String.class).in(person).invoke("Luke"); // Equivalent to call 'person.concentrate()' Reflection.method("concentrate").in(person).invoke(); // Equivalent to call 'person.getName()' String name = Reflection.method("getName").withReturnType(String.class).in(person).invoke(); // Equivalent to call 'jedi.getPowers()' List powers = Reflection.method("getPowers").withReturnType(new TypeRef>() {}).in(person).invoke();
MethodReflection(String) - Constructor for class r01f.reflection.fluent.MethodReflection
 
MethodReturnTypes - Class in r01f.reflection.fluent
 
MethodReturnTypes() - Constructor for class r01f.reflection.fluent.MethodReturnTypes
 
MethodReturnTypes.MethodReturnType<T> - Class in r01f.reflection.fluent
Return type of the method to invoke.
MethodReturnTypes.MethodReturnType(String) - Constructor for class r01f.reflection.fluent.MethodReturnTypes.MethodReturnType
 
MethodReturnTypes.MethodReturnTypeGenerics<T> - Class in r01f.reflection.fluent
Return type of the method to invoke using generics
MethodReturnTypes.MethodReturnTypeGenerics(String) - Constructor for class r01f.reflection.fluent.MethodReturnTypes.MethodReturnTypeGenerics
 
MIN_VALUE - Static variable in class r01f.guids.HighLowKey
 

A B C D E F G H I J K L M N O P Q R S T U V W X _