Uses of Class
org.apache.sshd.common.channel.PtyMode
-
Packages that use PtyMode Package Description org.apache.sshd.client.channel org.apache.sshd.common.channel org.apache.sshd.server org.apache.sshd.server.channel org.apache.sshd.server.shell -
-
Uses of PtyMode in org.apache.sshd.client.channel
Methods in org.apache.sshd.client.channel that return types with arguments of type PtyMode Modifier and Type Method Description Map<PtyMode,Integer>
PtyCapableChannelSession. getPtyModes()
Method parameters in org.apache.sshd.client.channel with type arguments of type PtyMode Modifier and Type Method Description void
PtyCapableChannelSession. setPtyModes(Map<PtyMode,Integer> ptyModes)
-
Uses of PtyMode in org.apache.sshd.common.channel
Fields in org.apache.sshd.common.channel with type parameters of type PtyMode Modifier and Type Field Description static Comparator<PtyMode>
PtyMode. BY_OPCODE
static NavigableMap<Integer,PtyMode>
PtyMode. COMMANDS
static Map<PtyMode,Integer>
PtyChannelConfigurationHolder. DEFAULT_PTY_MODES
static Set<PtyMode>
PtyMode. MODES
static ToIntFunction<PtyMode>
PtyMode. OPCODE_EXTRACTOR
Methods in org.apache.sshd.common.channel that return PtyMode Modifier and Type Method Description static PtyMode
PtyMode. fromInt(int b)
static PtyMode
PtyMode. fromName(String name)
static PtyMode
PtyMode. valueOf(String name)
Returns the enum constant of this type with the specified name.static PtyMode[]
PtyMode. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.sshd.common.channel that return types with arguments of type PtyMode Modifier and Type Method Description static Map<PtyMode,Integer>
PtyMode. createEnabledOptions(Collection<PtyMode> options)
static Map<PtyMode,Integer>
PtyMode. createEnabledOptions(PtyMode... options)
Map<PtyMode,Integer>
PtyChannelConfiguration. getPtyModes()
Map<PtyMode,Integer>
PtyChannelConfigurationHolder. getPtyModes()
static Map<PtyMode,Integer>
SttySupport. getUnixPtyModes()
static Map<PtyMode,Integer>
SttySupport. parsePtyModes(String stty)
static Set<PtyMode>
PtyMode. resolveEnabledOptions(Map<PtyMode,?> modes, Collection<PtyMode> options)
static Set<PtyMode>
PtyMode. resolveEnabledOptions(Map<PtyMode,?> modes, PtyMode... options)
Methods in org.apache.sshd.common.channel with parameters of type PtyMode Modifier and Type Method Description static Map<PtyMode,Integer>
PtyMode. createEnabledOptions(PtyMode... options)
static boolean
PtyMode. getBooleanSettingValue(Map<PtyMode,?> modes, PtyMode m)
static boolean
PtyMode. isCharSetting(PtyMode m)
static Set<PtyMode>
PtyMode. resolveEnabledOptions(Map<PtyMode,?> modes, PtyMode... options)
Method parameters in org.apache.sshd.common.channel with type arguments of type PtyMode Modifier and Type Method Description static Map<PtyMode,Integer>
PtyMode. createEnabledOptions(Collection<PtyMode> options)
static boolean
PtyMode. getBooleanSettingValue(Map<PtyMode,?> modes, Collection<PtyMode> enablers, boolean defaultValue)
static boolean
PtyMode. getBooleanSettingValue(Map<PtyMode,?> modes, Collection<PtyMode> enablers, boolean defaultValue)
static boolean
PtyMode. getBooleanSettingValue(Map<PtyMode,?> modes, PtyMode m)
static Set<PtyMode>
PtyMode. resolveEnabledOptions(Map<PtyMode,?> modes, Collection<PtyMode> options)
static Set<PtyMode>
PtyMode. resolveEnabledOptions(Map<PtyMode,?> modes, Collection<PtyMode> options)
static Set<PtyMode>
PtyMode. resolveEnabledOptions(Map<PtyMode,?> modes, PtyMode... options)
void
PtyChannelConfiguration. setPtyModes(Map<PtyMode,Integer> ptyModes)
void
PtyChannelConfigurationMutator. setPtyModes(Map<PtyMode,Integer> ptyModes)
-
Uses of PtyMode in org.apache.sshd.server
Methods in org.apache.sshd.server that return types with arguments of type PtyMode Modifier and Type Method Description Map<PtyMode,Integer>
Environment. getPtyModes()
Retrieve the PTY modes settingsMap<PtyMode,Integer>
StandardEnvironment. getPtyModes()
-
Uses of PtyMode in org.apache.sshd.server.channel
Fields in org.apache.sshd.server.channel with type parameters of type PtyMode Modifier and Type Field Description static Set<PtyMode>
PuttyRequestHandler. PUTTY_OPTIONS
Methods in org.apache.sshd.server.channel that return types with arguments of type PtyMode Modifier and Type Method Description static Map<PtyMode,Integer>
PuttyRequestHandler. resolveShellTtyOptions(Map<PtyMode,Integer> modes)
Methods in org.apache.sshd.server.channel with parameters of type PtyMode Modifier and Type Method Description protected int
ChannelSession. getPtyModeValue(PtyMode mode)
Method parameters in org.apache.sshd.server.channel with type arguments of type PtyMode Modifier and Type Method Description protected RequestHandler.Result
ChannelSession. handlePtyReqParsed(String term, int tColumns, int tRows, int tWidth, int tHeight, Map<PtyMode,Integer> ptyModes)
static Map<PtyMode,Integer>
PuttyRequestHandler. resolveShellTtyOptions(Map<PtyMode,Integer> modes)
-
Uses of PtyMode in org.apache.sshd.server.shell
Fields in org.apache.sshd.server.shell with type parameters of type PtyMode Modifier and Type Field Description static Set<PtyMode>
TtyFilterInputStream. INPUT_OPTIONS
static Set<PtyMode>
TtyFilterOutputStream. OUTPUT_OPTIONS
Methods in org.apache.sshd.server.shell that return types with arguments of type PtyMode Modifier and Type Method Description protected Map<PtyMode,Integer>
ProcessShell. resolveShellTtyOptions(Map<PtyMode,Integer> modes)
Method parameters in org.apache.sshd.server.shell with type arguments of type PtyMode Modifier and Type Method Description protected Map<PtyMode,Integer>
ProcessShell. resolveShellTtyOptions(Map<PtyMode,Integer> modes)
Constructor parameters in org.apache.sshd.server.shell with type arguments of type PtyMode Constructor Description TtyFilterInputStream(InputStream in, Collection<PtyMode> ttyOptions)
TtyFilterInputStream(InputStream in, Map<PtyMode,?> modes)
TtyFilterOutputStream(OutputStream out, TtyFilterInputStream echo, Collection<PtyMode> ttyOptions)
TtyFilterOutputStream(OutputStream out, TtyFilterInputStream echo, Map<PtyMode,?> modes)
-