com.github.jamesnetherton.zulip.client.api.message.PropagateMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zulip-java-client Show documentation
Show all versions of zulip-java-client Show documentation
Java client for the Zulip REST API
The newest version!
package com.github.jamesnetherton.zulip.client.api.message;
/**
* Defines the Zulip message edit propagation mode and determines which message(s) should be edited.
*/
public enum PropagateMode {
/**
* Changes the message specified by the provided message id.
*/
CHANGE_ONE,
/**
* Changes messages in the topic that had been sent before the one specified.
*/
CHANGE_LATER,
/**
* Changes all messages.
*/
CHANGE_ALL;
@Override
public String toString() {
return this.name().toLowerCase();
}
}