Return the native size of the given Java type, from the perspective of this Structure. @param nativeType field type to examine @return native size (in bytes) of the requested field type
(Class<?> nativeType)
| 2380 | * @return native size (in bytes) of the requested field type |
| 2381 | */ |
| 2382 | protected int getNativeSize(Class<?> nativeType) { |
| 2383 | return getNativeSize(nativeType, null); |
| 2384 | } |
| 2385 | |
| 2386 | /** Return the native size of the given Java type, from the perspective of |
| 2387 | * this Structure. |
no test coverage detected