Enum Enums.SecureTransferModes
- java.lang.Object
-
- java.lang.Enum<Enums.SecureTransferModes>
-
- com.blackberry.workspaces.sdk.api.Enums.SecureTransferModes
-
- All Implemented Interfaces:
Serializable
,Comparable<Enums.SecureTransferModes>
- Enclosing class:
- Enums
public static enum Enums.SecureTransferModes extends Enum<Enums.SecureTransferModes>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
value()
static Enums.SecureTransferModes
valueOf(String name)
Returns the enum constant of this type with the specified name.static Enums.SecureTransferModes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AllFiles
public static final Enums.SecureTransferModes AllFiles
All files
-
Office
public static final Enums.SecureTransferModes Office
Office
-
Pdf
public static final Enums.SecureTransferModes Pdf
Pdf
-
Images
public static final Enums.SecureTransferModes Images
IMages
-
Other
public static final Enums.SecureTransferModes Other
Other
-
-
Method Detail
-
values
public static Enums.SecureTransferModes[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Enums.SecureTransferModes c : Enums.SecureTransferModes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Enums.SecureTransferModes valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public int value()
-
-