public enum MatFileType extends Enum<MatFileType>
| Enum Constant and Description |
|---|
ReducedHeader |
Regular |
| Modifier and Type | Method and Description |
|---|---|
static MatFileType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatFileType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatFileType Regular
public static final MatFileType ReducedHeader
public static MatFileType[] values()
for (MatFileType c : MatFileType.values()) System.out.println(c);
public static MatFileType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null