public enum FileErrorReason extends Enum<FileErrorReason>
Java class for FileError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="FileError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="MISSING_CONTENTS"/>
<enumeration value="SIZE_TOO_LARGE"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
MISSING_CONTENTS
The provided byte array is empty.
|
SIZE_TOO_LARGE
The provided file is larger than the maximum size defined for the
network.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static FileErrorReason |
fromValue(String v) |
String |
value() |
static FileErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileErrorReason MISSING_CONTENTS
public static final FileErrorReason SIZE_TOO_LARGE
public static final FileErrorReason UNKNOWN
public static FileErrorReason[] values()
for (FileErrorReason c : FileErrorReason.values()) System.out.println(c);
public static FileErrorReason 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()
public static FileErrorReason fromValue(String v)
Copyright © 2018. All Rights Reserved.