Oracle Fusion Middleware C++ API Reference for Oracle Coherence
12c (12.1.2)

E26041-01

TypedBarrenClass Class Template Reference

#include <coherence/lang/TypedBarrenClass.hpp>

Inherits AbstractTypedClass< T >.

List of all members.


Detailed Description

template<class T>
class coherence::lang::TypedBarrenClass< T >

TypedBarrenClass provides a templated extension of Class but does not provide a means to instantiate new instances of the class.

This is suitable for use with interfaces, abstract classes, and classes which do not have a zero-argument create method.

Author:
mf/jh 2008.05.02

Public Types

typedef spec::Handle Handle
 TypedBarrenClass<T> Handle definition.
typedef spec::View View
 TypedBarrenClass<T> View definition.
typedef spec::Holder Holder
 TypedBarrenClass<T> Holder definition.
typedef T Type
 Class type.

Public Member Functions

virtual Object::Handle newInstance (ObjectArray::View) const
 Create a new instance of the corresponding type.

Parameters:
vaParam the object's initialization parameters
Returns:
a new instance of the corresponding type

virtual void toStream (std::ostream &out) const
 Output a human-readable description of this Object to the given stream.

coherence::lang::operator<<(std::ostream, Object::View) is defined and will call into the toStream method, to output Objects. If a managed String object is desired, the COH_TO_STRING macro can be used to build up a String from streamable contents.

 Object::View vKey   = ...
 Object::View vValue = ...
 std::cout << vKey << " = " << vValue << std::endl;

 String::Handle hs = COH_TO_STRING(vKey << " = " << vValue);

Parameters:
out the stream used to output the description


Protected Member Functions

 T ()
 Create a new TypedBarrenClass.

Member Function Documentation

virtual Object::Handle newInstance ( ObjectArray::View   )  const [inline, virtual]

Create a new instance of the corresponding type.

Parameters:
vaParam the object's initialization parameters
Returns:
a new instance of the corresponding type

Exceptions:
UnsupportedOperationException 

Reimplemented from Class.


The documentation for this class was generated from the following file:
Copyright © 2000, 2013, Oracle and/or its affiliates. All rights reserved.