public enum RevokeSharedLinkError extends Enum<RevokeSharedLinkError>
| Enum Constant and Description | 
|---|
| OTHERAn unspecified error | 
| SHARED_LINK_ACCESS_DENIEDThe caller is not allowed to access this shared link | 
| SHARED_LINK_MALFORMEDShared link is malformed. | 
| SHARED_LINK_NOT_FOUNDThe shared link wasn't found | 
| Modifier and Type | Method and Description | 
|---|---|
| static RevokeSharedLinkError | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static RevokeSharedLinkError[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final RevokeSharedLinkError SHARED_LINK_NOT_FOUND
public static final RevokeSharedLinkError SHARED_LINK_ACCESS_DENIED
public static final RevokeSharedLinkError OTHER
public static final RevokeSharedLinkError SHARED_LINK_MALFORMED
public static RevokeSharedLinkError[] values()
for (RevokeSharedLinkError c : RevokeSharedLinkError.values()) System.out.println(c);
public static RevokeSharedLinkError 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 null