Uses of Class
org.apache.sshd.common.channel.PtyMode
-
Packages that use PtyMode Package Description org.apache.sshd.common.channel org.apache.sshd.server.shell -
-
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_OPCODEstatic NavigableMap<Integer,PtyMode>PtyMode. COMMANDSstatic Map<PtyMode,Integer>PtyChannelConfigurationHolder. DEFAULT_PTY_MODESstatic Set<PtyMode>PtyMode. MODESstatic ToIntFunction<PtyMode>PtyMode. OPCODE_EXTRACTORMethods in org.apache.sshd.common.channel that return PtyMode Modifier and Type Method Description static PtyModePtyMode. fromInt(int b)static PtyModePtyMode. fromName(String name)static PtyModePtyMode. 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 booleanPtyMode. getBooleanSettingValue(Map<PtyMode,?> modes, PtyMode m)static booleanPtyMode. 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 booleanPtyMode. getBooleanSettingValue(Map<PtyMode,?> modes, Collection<PtyMode> enablers, boolean defaultValue)static booleanPtyMode. getBooleanSettingValue(Map<PtyMode,?> modes, Collection<PtyMode> enablers, boolean defaultValue)static booleanPtyMode. 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)voidPtyChannelConfiguration. setPtyModes(Map<PtyMode,Integer> ptyModes)voidPtyChannelConfigurationMutator. setPtyModes(Map<PtyMode,Integer> ptyModes) -
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_OPTIONSstatic Set<PtyMode>TtyFilterOutputStream. OUTPUT_OPTIONSConstructor 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)
-