Enum HousePortal

    • Method Detail

      • values

        public static HousePortal[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (HousePortal c : HousePortal.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static HousePortal valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • getX

        public int getX()
        Specified by:
        getX in interface Teleport
      • getY

        public int getY()
        Specified by:
        getY in interface Teleport
      • getZ

        public int getZ()
        Specified by:
        getZ in interface Teleport
      • execute

        public boolean execute()
        Specified by:
        execute in interface Teleport
      • getDestination

        public Tile getDestination()
      • getPortalName

        public java.lang.String getPortalName()
      • getNexusTarget

        public java.lang.String getNexusTarget()