All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jamesnetherton.zulip.client.api.message.Anchor Maven / Gradle / Ivy

The newest version!
package com.github.jamesnetherton.zulip.client.api.message;

/**
 * Defines anchor options for matching messages.
 */
public enum Anchor {
    /**
     * The oldest unread message matching the query, if any; otherwise, the most recent message.
     */
    FIRST_UNREAD,
    /**
     * The most recent message.
     */
    NEWEST,
    /**
     * The oldest message.
     */
    OLDEST;

    @Override
    public String toString() {
        return this.name().toLowerCase();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy