public static enum MatrixObject.UpdateType extends Enum<MatrixObject.UpdateType>
| Enum Constant and Description | 
|---|
| COPY | 
| INPLACE | 
| INPLACE_PINNED | 
| Modifier and Type | Method and Description | 
|---|---|
| boolean | isInPlace() | 
| static MatrixObject.UpdateType | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static MatrixObject.UpdateType[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final MatrixObject.UpdateType COPY
public static final MatrixObject.UpdateType INPLACE
public static final MatrixObject.UpdateType INPLACE_PINNED
public static MatrixObject.UpdateType[] values()
for (MatrixObject.UpdateType c : MatrixObject.UpdateType.values()) System.out.println(c);
public static MatrixObject.UpdateType 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 nullpublic boolean isInPlace()
Copyright © 2021 The Apache Software Foundation. All rights reserved.