public static enum BinaryM.VectorType extends Enum<BinaryM.VectorType>
| Enum Constant and Description | 
|---|
| COL_VECTOR | 
| ROW_VECTOR | 
| Modifier and Type | Method and Description | 
|---|---|
| static BinaryM.VectorType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static BinaryM.VectorType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final BinaryM.VectorType COL_VECTOR
public static final BinaryM.VectorType ROW_VECTOR
public static BinaryM.VectorType[] values()
for (BinaryM.VectorType c : BinaryM.VectorType.values()) System.out.println(c);
public static BinaryM.VectorType 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 nullCopyright © 2020 The Apache Software Foundation. All rights reserved.