Class ClanMember


  • public class ClanMember
    extends java.lang.Object
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      Returns a formatted version of the clan member's name Formatted means replacing all non-alphabetical/numeric characters with spaces ex: "jack_sparrow" would return "jack sparrow"
      byte getRankValue()
      Gets a byte value for the clan member's rank Currently we do not have what these values map to as actual ranks.
      int getWorld()  
      • Methods inherited from class java.lang.Object

        equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getWorld

        public int getWorld()
      • getRankValue

        public byte getRankValue()
        Gets a byte value for the clan member's rank Currently we do not have what these values map to as actual ranks.
        Returns:
        Byte value of the clan member's rank
      • getName

        public java.lang.String getName()
        Returns a formatted version of the clan member's name Formatted means replacing all non-alphabetical/numeric characters with spaces ex: "jack_sparrow" would return "jack sparrow"
        Returns:
        formatted name of clan member