Package Summary  Overview Summary

class:ProcessBuilder.Redirect.Type [NONE]

All Implemented Interfaces:
Serializable, Comparable<ProcessBuilder.Redirect.Type>, Constable
Enclosing class:
ProcessBuilder.Redirect

public static enum ProcessBuilder.Redirect.Typeextends Enum<ProcessBuilder.Redirect.Type>
The type of a ProcessBuilder.Redirect.

field:PIPE [NONE]

  • PIPE

    public static final  ProcessBuilder.Redirect.Type PIPE
    The type of Redirect.PIPE.
  • field:INHERIT [NONE]

    INHERIT

    public static final  ProcessBuilder.Redirect.Type INHERIT
    The type of Redirect.INHERIT.

    field:READ [NONE]

    READ

    public static final  ProcessBuilder.Redirect.Type READ
    The type of redirects returned from Redirect.from(File).

    field:WRITE [NONE]

    WRITE

    public static final  ProcessBuilder.Redirect.Type WRITE
    The type of redirects returned from Redirect.to(File).

    field:APPEND [NONE]

    APPEND

    public static final  ProcessBuilder.Redirect.Type APPEND
    The type of redirects returned from Redirect.appendTo(File).

    method:values() [NONE]

  • values

    public static  ProcessBuilder.Redirect.Type[] values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Returns:
    an array containing the constants of this enum class, in the order they are declared
  • method:valueOf(java.lang.String) [NONE]

    valueOf

    public static  ProcessBuilder.Redirect.Type valueOf (String name)
    Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
    NullPointerException - if the argument is null

    © 2023 Oracle Corporation and/or its affiliates