Table of Contents

Class Writer

Namespace
Java.Io
Assembly
MASES.JNet.dll
public class Writer : JVMBridgeBase<Writer>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
Inheritance
JVMBridgeBase
JVMBridgeBase<Writer>
Writer
Implements
IJVMBridgeCore
IJVMBridgeBaseStatic
IJVMBridgeBase
IJVMBridgeDefinition
Derived
Inherited Members
JVMBridgeBase<Writer>.IsAssignableFrom(IJavaType)
JVMBridgeBase<Writer>.IsAssignableFrom<T>()
JVMBridgeBase<Writer>.Execute<T>(params T[])
JVMBridgeBase<Writer>.DynBridgeClazz
JVMBridgeBase<Writer>.BridgeClazz
JVMBridgeBase.RuntimeClassNameOf<T>()
JVMBridgeBase.ClassNameOf<T>()
JVMBridgeBase.ClassOf<T>()
JVMBridgeBase.WrapsDirect<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn>(IJavaObject)
JVMBridgeBase.Wraps<TNewClass, TReturn, TConverter>(IJavaObject)
JVMBridgeBase.MonitorEnter()
JVMBridgeBase.MonitorExit()
JVMBridgeBase.IsInstanceOf(IJavaType)
JVMBridgeBase.IsInstanceOf<T>()
JVMBridgeBase.RuntimeIsInstanceOf<T>()
JVMBridgeBase.CastTo<TNewClass>()
JVMBridgeBase.CastDirect<TNewClass>()
JVMBridgeBase.Dispose()
JVMBridgeBase.ToString()
JVMBridgeBase.GetHashCode()
JVMBridgeBase.Notify()
JVMBridgeBase.NotifyAll()
JVMBridgeBase.Wait()
JVMBridgeBase.DynBridgeInstance
JVMBridgeBase.BridgeInstance
JVMBridgeBase.IsBridgeListener
Extension Methods

Constructors

Writer()

Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge

[Obsolete("Writer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public Writer()

Writer(params object[])

Generic constructor: it is useful for JCOBridge when there is a derived class which needs to pass arguments to the highest JVMBridgeBase class

[Obsolete("Writer class represents, in .NET, an instance of a JVM interface or abstract class. This public initializer is needed for JCOBridge internal use, other uses can produce unidentible behaviors.")]
public Writer(params object[] args)

Parameters

args object[]

Properties

BridgeClassName

public override string BridgeClassName { get; }

Property Value

string

IsBridgeAbstract

public override bool IsBridgeAbstract { get; }

Property Value

bool

IsBridgeCloseable

public override bool IsBridgeCloseable { get; }

Property Value

bool

IsBridgeInterface

public override bool IsBridgeInterface { get; }

Property Value

bool

IsBridgeStatic

public override bool IsBridgeStatic { get; }

Property Value

bool

Methods

Append(CharSequence)

public Appendable Append(CharSequence arg0)

Parameters

arg0 CharSequence

CharSequence

Returns

Appendable

Appendable

Exceptions

IOException

Append(CharSequence, int, int)

public Appendable Append(CharSequence arg0, int arg1, int arg2)

Parameters

arg0 CharSequence

CharSequence

arg1 int

int

arg2 int

int

Returns

Appendable

Appendable

Exceptions

IOException

Append(char)

public Appendable Append(char arg0)

Parameters

arg0 char

char

Returns

Appendable

Appendable

Exceptions

IOException

Close()

public void Close()

Exceptions

IOException

Flush()

public void Flush()

Exceptions

IOException

NullWriter()

public static Writer NullWriter()

Returns

Writer

Writer

Write(String)

public void Write(String arg0)

Parameters

arg0 String

String

Exceptions

IOException

Write(String, int, int)

public void Write(String arg0, int arg1, int arg2)

Parameters

arg0 String

String

arg1 int

int

arg2 int

int

Exceptions

IOException

Write(char[])

public void Write(char[] arg0)

Parameters

arg0 char[]

char

Exceptions

IOException

Write(char[], int, int)

public void Write(char[] arg0, int arg1, int arg2)

Parameters

arg0 char[]

char

arg1 int

int

arg2 int

int

Exceptions

IOException

Write(int)

public void Write(int arg0)

Parameters

arg0 int

int

Exceptions

IOException

Operators

implicit operator Closeable(Writer)

Converter from Writer to Closeable

public static implicit operator Closeable(Writer t)

Parameters

t Writer

Returns

Closeable

implicit operator Flushable(Writer)

Converter from Writer to Flushable

public static implicit operator Flushable(Writer t)

Parameters

t Writer

Returns

Flushable

implicit operator Appendable(Writer)

Converter from Writer to Appendable

public static implicit operator Appendable(Writer t)

Parameters

t Writer

Returns

Appendable