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

com.ircclouds.irc.api.domain.IRCUserStatus Maven / Gradle / Ivy

package com.ircclouds.irc.api.domain;

public final class IRCUserStatus
{
	private Character type;
	private Character prefix;
	private int priority;
	
	public IRCUserStatus(Character aType, Character aPrexix, int aPriority)
	{
		type = aType;
		prefix = aPrexix;
		priority = aPriority;
	}
	
	public Character getChanModeType()
	{
		return type;
	}

	public Character getPrefix()
	{
		return prefix;
	}

	public int getPriority()
	{
		return priority;
	}
	
	public String toString()
	{
		return type.toString() + " " + prefix + " " + priority;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy