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

com.activitystream.CommentEntityRoleType Maven / Gradle / Ivy

Go to download

For a description please see https://github.com/activitystream/as-sdk-java

There is a newer version: 0.5.8
Show newest version
package com.activitystream;

public class CommentEntityRoleType {
    public static final CommentEntityRoleType COMMENT = new CommentEntityRoleType("COMMENT");
    public static final CommentEntityRoleType COMMENTS = COMMENT.extend("COMMENTS");
    public static final CommentEntityRoleType COMMENTED_ON = COMMENT.extend("COMMENTED_ON");
    public static final CommentEntityRoleType MENTIONS = COMMENT.extend("MENTIONS");
    private final String role;

    private CommentEntityRoleType(String role) {
        this.role = role;
    }

    public String value() {
        return role;
    }

    public CommentEntityRoleType extend(String ext) {
        return new CommentEntityRoleType(role + ":" + ext);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy