public enum StorageLayoutIJ extends java.lang.Enum<StorageLayoutIJ>
This information aims at optimizing the data traversal for extractors. Enum
values covering all possible cases for internal data layout in memory. For
instance JI
means that:
The fastest way to go through the data with such layout is to perform the
following double loop:
for each j with 0 <= j < numJ
for each i with 0 <= i < numI
Enum Constant and Description |
---|
IJ |
JI |
UNKNOWN
Means that the data storage organization is unknown, for instance when data
are computed on the fly.
|
Modifier and Type | Method and Description |
---|---|
static StorageLayoutIJ |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StorageLayoutIJ[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StorageLayoutIJ IJ
public static final StorageLayoutIJ JI
public static final StorageLayoutIJ UNKNOWN
public static StorageLayoutIJ[] values()
for (StorageLayoutIJ c : StorageLayoutIJ.values()) System.out.println(c);
public static StorageLayoutIJ valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullGenerated on January 23, 2025, Copyright © Thermo Fisher Scientific. All rights reserved. http://www.openinventor.com