valueOf static method
Implementation
static OrtSparseFormat valueOf(int type) {
switch (type) {
case bg.OrtSparseFormat.ORT_SPARSE_COO:
return OrtSparseFormat.coo;
case bg.OrtSparseFormat.ORT_SPARSE_CSRC:
return OrtSparseFormat.csrc;
case bg.OrtSparseFormat.ORT_SPARSE_BLOCK_SPARSE:
return OrtSparseFormat.blockSparse;
default:
return OrtSparseFormat.undefined;
}
}