Package io.seald.seald_sdk
Enum EncryptionSessionRetrievalFlow
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum EncryptionSessionRetrievalFlow extends Enum<EncryptionSessionRetrievalFlow>
EncryptionSessionRetrievalFlow represents the way the session was retrieved : as a direct recipient, as member of a group, or through a proxy session
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CREATEDThe session was created locally.
DIRECTThe session was retrieved as a direct recipient.
VIA_GROUPThe session was retrieved as a member of a group.
VIA_PROXYThe session was retrieved through a proxy session.
VIA_TMR_ACCESSThe session was retrieved through a TMR access.
-
Method Summary
Modifier and Type Method Description final EncryptionSessionRetrievalFlowvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<EncryptionSessionRetrievalFlow>values()Returns an array containing the constants of this enum type, in the order they're declared. final IntegergetValue()-
-
Method Detail
-
valueOf
final EncryptionSessionRetrievalFlow valueOf(String value)
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.)
-
values
final Array<EncryptionSessionRetrievalFlow> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
-
-
-