Class Grouped<K, V>
public class Grouped<K, V> : JVMBridgeBase<Grouped<K, V>>, IDynamicMetaObjectProvider, IJVMBridgeCore, IDisposable, IJVMBridgeBaseStatic, IJVMBridgeBase, IJVMBridgeDefinition
Type Parameters
K
V
- Inheritance
-
JVMBridgeBase<Grouped<K, V>>Grouped<K, V>
- Implements
- Inherited Members
-
JVMBridgeBase<Grouped<K, V>>.SExecuteWithSignature(Type, IJavaType, string, string, params object[])JVMBridgeBase<Grouped<K, V>>.SExecute<TReturn, TConverter>(Type, IJavaType, string, params object[])
Constructors
Grouped()
Default constructor: even if the corresponding Java class does not have one, it is mandatory for JCOBridge
public Grouped()
Grouped(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
public Grouped(params object[] args)
Parameters
args
object[]
Properties
BridgeClassName
Java class name to be instantiated
public override string BridgeClassName { get; }
Property Value
IsBridgeAbstract
true if the BridgeClassName is an abstract class, i.e. cannot be created an instance
public override bool IsBridgeAbstract { get; }
Property Value
IsBridgeCloseable
true if the BridgeClassName implements Closeable
public override bool IsBridgeCloseable { get; }
Property Value
IsBridgeInterface
true if the BridgeClassName is an interface, i.e. does not have any public constructor
public override bool IsBridgeInterface { get; }
Property Value
IsBridgeStatic
true if the BridgeClassName is a static class, i.e. does not have any public constructor
public override bool IsBridgeStatic { get; }
Property Value
Methods
As(String)
public static Grouped<K, V> As(String arg0)
Parameters
Returns
KeySerde(Serde<K>)
public static Grouped<K, V> KeySerde(Serde<K> arg0)
Parameters
Returns
ValueSerde(Serde<V>)
public static Grouped<K, V> ValueSerde(Serde<V> arg0)
Parameters
Returns
With(String, Serde<K>, Serde<V>)
public static Grouped<K, V> With(String arg0, Serde<K> arg1, Serde<V> arg2)
Parameters
Returns
With(Serde<K>, Serde<V>)
public static Grouped<K, V> With(Serde<K> arg0, Serde<V> arg1)
Parameters
Returns
WithKeySerde(Serde<K>)
public Grouped<K, V> WithKeySerde(Serde<K> arg0)
Parameters
Returns
WithValueSerde(Serde<V>)
public Grouped<K, V> WithValueSerde(Serde<V> arg0)
Parameters
Returns
Operators
implicit operator Grouped(Grouped<K, V>)
Converter from Grouped<K, V> to Grouped
public static implicit operator Grouped(Grouped<K, V> t)
Parameters
t
Grouped<K, V>