Enum LoginStage

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<LoginStage>

    public enum LoginStage
    extends java.lang.Enum<LoginStage>
    Created by Nezz on 2/20/2018.
    • Enum Constant Detail

      • LOGIN_SCREEN

        public static final LoginStage LOGIN_SCREEN
      • SOMETHING1

        public static final LoginStage SOMETHING1
      • ENTER_INFO

        public static final LoginStage ENTER_INFO
      • INVALID_INFORMATION

        public static final LoginStage INVALID_INFORMATION
      • FORGOTTEN_PASSWORD

        public static final LoginStage FORGOTTEN_PASSWORD
      • UPDATE_DOB

        public static final LoginStage UPDATE_DOB
      • WORLD_SCREEN

        public static final LoginStage WORLD_SCREEN
      • PROCESSING

        public static final LoginStage PROCESSING
      • LOGIN_SCREEN_PLAY_NOW

        public static final LoginStage LOGIN_SCREEN_PLAY_NOW
      • DISABLED

        public static final LoginStage DISABLED
      • MUST_ACCEPT_TOS

        public static final LoginStage MUST_ACCEPT_TOS
      • DISCONNECTED

        public static final LoginStage DISCONNECTED
      • TOS_AGREEMENT

        public static final LoginStage TOS_AGREEMENT
      • LAUNCHER

        public static final LoginStage LAUNCHER
    • Method Detail

      • values

        public static LoginStage[] 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 (LoginStage c : LoginStage.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LoginStage 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
      • getStage

        public static LoginStage getStage​(int index)