public enum BlobType extends Enum<BlobType>
| Enum Constant and Description |
|---|
BLOCK_BLOB |
PAGE_BLOB |
UNRECOGNIZED |
| Modifier and Type | Method and Description |
|---|---|
static BlobType |
fromValue(String type) |
String |
toString() |
String |
value() |
static BlobType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlobType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlobType BLOCK_BLOB
public static final BlobType PAGE_BLOB
public static final BlobType UNRECOGNIZED
public static BlobType[] values()
for (BlobType c : BlobType.values()) System.out.println(c);
public static BlobType 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 String value()
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.