Package com.sun.jna
Interface FromNativeConverter
- 
- All Known Subinterfaces:
- TypeConverter
 - All Known Implementing Classes:
- EnumConverter,- NativeMappedConverter
 
 public interface FromNativeConverterDefine conversion from a native type to the appropriate Java type.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectfromNative(java.lang.Object nativeValue, FromNativeContext context)Convert the given native object into its Java representation using the given context.java.lang.Class<?>nativeType()Indicate the native type used by this converter.
 
- 
- 
- 
Method Detail- 
fromNativejava.lang.Object fromNative(java.lang.Object nativeValue, FromNativeContext context)Convert the given native object into its Java representation using the given context.
 - 
nativeTypejava.lang.Class<?> nativeType() Indicate the native type used by this converter.
 
- 
 
-