Package ai.nexconn.chat.channel.model
Enum MessageOperationPolicy
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum MessageOperationPolicy extends Enum<MessageOperationPolicy>
Message operation policy.
Specifies the scope of a message clear operation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description LOCALLocal only
LOCAL_REMOTELocal and remote
-
Method Summary
Modifier and Type Method Description final MessageOperationPolicyvalueOf(String value)Returns the enum constant of this type with the specified name. final Array<MessageOperationPolicy>values()Returns an array containing the constants of this enum type, in the order they're declared. -
-
Method Detail
-
valueOf
final MessageOperationPolicy 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<MessageOperationPolicy> 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.
-
-
-
-