Enum GitpodOpenMode

    • Enum Constant Detail

      • TAB_AFTER

        @Stability(Experimental)
        public static final GitpodOpenMode TAB_AFTER
        (experimental) Opens in the same tab group right after the previous tab.
      • TAB_BEFORE

        @Stability(Experimental)
        public static final GitpodOpenMode TAB_BEFORE
        (experimental) Opens in the same tab group left before the previous tab.
      • SPLIT_RIGHT

        @Stability(Experimental)
        public static final GitpodOpenMode SPLIT_RIGHT
        (experimental) Splits and adds the terminal to the right.
      • SPLIT_LEFT

        @Stability(Experimental)
        public static final GitpodOpenMode SPLIT_LEFT
        (experimental) Splits and adds the terminal to the left.
      • SPLIT_TOP

        @Stability(Experimental)
        public static final GitpodOpenMode SPLIT_TOP
        (experimental) Splits and adds the terminal to the top.
      • SPLIT_BOTTOM

        @Stability(Experimental)
        public static final GitpodOpenMode SPLIT_BOTTOM
        (experimental) Splits and adds the terminal to the bottom.
    • Method Detail

      • values

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

        public static GitpodOpenMode valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null