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

com.github.jamesnetherton.zulip.client.api.user.WebHomeView Maven / Gradle / Ivy

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

/**
 * Defines options for the Zulip UI web home view.
 */
public enum WebHomeView {
    ALL_MESSAGES,
    RECENT_TOPICS;

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy