Package ghidra.pty.macos
Enum Class MacosPtyFactory
- All Implemented Interfaces:
- PtyFactory,- Serializable,- Comparable<MacosPtyFactory>,- Constable
- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Field SummaryFields inherited from interface ghidra.pty.PtyFactoryDEFAULT_COLS, DEFAULT_ROWS
- 
Method SummaryModifier and TypeMethodDescriptionGet a human-readable description of the factoryopenpty(short cols, short rows) Open a new pseudo-terminalstatic MacosPtyFactoryReturns the enum constant of this class with the specified name.static MacosPtyFactory[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enumclone, compareTo, describeConstable, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOfMethods inherited from interface ghidra.pty.PtyFactoryopenpty, openpty
- 
Enum Constant Details- 
INSTANCE
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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
 
- 
openptyDescription copied from interface:PtyFactoryOpen a new pseudo-terminal- Specified by:
- openptyin interface- PtyFactory
- Parameters:
- cols- the initial width in characters, or 0 to let the system decide both dimensions
- rows- the initial height in characters, or 0 to let the system decide both dimensions
- Returns:
- new new Pty
- Throws:
- IOException- for an I/O error, including cancellation
 
- 
getDescriptionDescription copied from interface:PtyFactoryGet a human-readable description of the factory- Specified by:
- getDescriptionin interface- PtyFactory
- Returns:
- the description
 
 
-