Uses of Class
com.sun.istack.NotNull

Packages that use NotNull
com.sun.istack istack-commons runtime utilities. 
com.sun.istack.logging   
com.sun.xml.bind.api Runtime API for the JAX-WS RI 
com.sun.xml.bind.v2.runtime Code that implements JAXBContext, Unmarshaller, and Marshaller. 
com.sun.xml.bind.v2.runtime.output Code that writes well-formed XML (XmlOutput and its implementations}. 
com.sun.xml.bind.v2.runtime.reflect Abstraction around accessing data of actual objects. 
com.sun.xml.wss.provider.wsit   
 

Uses of NotNull in com.sun.istack
 

Methods in com.sun.istack with annotations of type NotNull
protected abstract  T Pool.Impl.create()
          Creates a new instance of object.
 T Pool.take()
          Gets a new object from the pool.
 T Pool.Impl.take()
          Gets a new object from the pool.
 

Method parameters in com.sun.istack with annotations of type NotNull
 void Pool.recycle(T t)
          Returns an object back to the pool.
 

Uses of NotNull in com.sun.istack.logging
 

Methods in com.sun.istack.logging with annotations of type NotNull
static Logger Logger.getLogger(java.lang.Class<?> componentClass)
           The factory method returns preconfigured Logger wrapper for the class.
static Logger Logger.getLogger(java.lang.String customLoggerName, java.lang.Class<?> componentClass)
          The factory method returns preconfigured Logger wrapper for the class.
 

Method parameters in com.sun.istack.logging with annotations of type NotNull
static Logger Logger.getLogger(java.lang.Class<?> componentClass)
           The factory method returns preconfigured Logger wrapper for the class.
static Logger Logger.getLogger(java.lang.String customLoggerName, java.lang.Class<?> componentClass)
          The factory method returns preconfigured Logger wrapper for the class.
static Logger Logger.getLogger(java.lang.String customLoggerName, java.lang.Class<?> componentClass)
          The factory method returns preconfigured Logger wrapper for the class.
 

Uses of NotNull in com.sun.xml.bind.api
 

Methods in com.sun.xml.bind.api with annotations of type NotNull
abstract  BridgeContext JAXBRIContext.createBridgeContext()
          Creates a new BridgeContext instance.
abstract  java.lang.String JAXBRIContext.getBuildId()
          Gets the build information of the JAXB runtime.
 JAXBRIContext Bridge.getContext()
          Gets the JAXBRIContext to which this object belongs.
abstract  java.util.List<java.lang.String> JAXBRIContext.getKnownNamespaceURIs()
          Gets the namespace URIs statically known to this JAXBContext.
static java.lang.String JAXBRIContext.mangleNameToClassName(java.lang.String localName)
          Computes a Java class name from a local name.
static java.lang.String JAXBRIContext.mangleNameToPropertyName(java.lang.String localName)
          Computes a Java class name from a local name.
static java.lang.String JAXBRIContext.mangleNameToVariableName(java.lang.String localName)
          Computes a Java identifier from a local name.
 T Bridge.unmarshal(BridgeContext context, java.io.InputStream in)
           
 T Bridge.unmarshal(BridgeContext context, org.w3c.dom.Node n)
           
 T Bridge.unmarshal(BridgeContext context, javax.xml.transform.Source in)
           
 T Bridge.unmarshal(BridgeContext context, javax.xml.stream.XMLStreamReader in)
           
 T Bridge.unmarshal(java.io.InputStream in)
          Unmarshals the specified type object.
 T Bridge.unmarshal(org.w3c.dom.Node n)
          Unmarshals the specified type object.
 T Bridge.unmarshal(org.w3c.dom.Node n, AttachmentUnmarshaller au)
           
 T Bridge.unmarshal(javax.xml.transform.Source in)
          Unmarshals the specified type object.
 T Bridge.unmarshal(javax.xml.transform.Source in, AttachmentUnmarshaller au)
           
abstract  T Bridge.unmarshal(Unmarshaller u, java.io.InputStream in)
           
abstract  T Bridge.unmarshal(Unmarshaller context, org.w3c.dom.Node n)
           
abstract  T Bridge.unmarshal(Unmarshaller u, javax.xml.transform.Source in)
           
abstract  T Bridge.unmarshal(Unmarshaller u, javax.xml.stream.XMLStreamReader in)
           
 T Bridge.unmarshal(javax.xml.stream.XMLStreamReader in)
          Unmarshals the specified type object.
 T Bridge.unmarshal(javax.xml.stream.XMLStreamReader in, AttachmentUnmarshaller au)
           
 

Method parameters in com.sun.xml.bind.api with annotations of type NotNull
abstract  Bridge JAXBRIContext.createBridge(TypeReference ref)
          Creates a mini-marshaller/unmarshaller that can process a TypeReference.
abstract  void JAXBRIContext.generateSchema(SchemaOutputResolver outputResolver)
          Generates the schema documents from the model.
static java.lang.reflect.Type JAXBRIContext.getBaseType(java.lang.reflect.Type type, java.lang.Class baseType)
          Gets the parameterization of the given base type.
static java.lang.reflect.Type JAXBRIContext.getBaseType(java.lang.reflect.Type type, java.lang.Class baseType)
          Gets the parameterization of the given base type.
abstract  javax.xml.namespace.QName JAXBRIContext.getElementName(java.lang.Class o)
          Allows to retrieve the element name based on Class.
abstract  javax.xml.namespace.QName JAXBRIContext.getElementName(java.lang.Object o)
          If the given object is bound to an element in XML by JAXB, returns the element name.
abstract  javax.xml.namespace.QName JAXBRIContext.getTypeName(TypeReference tr)
          Returns the name of the XML Type bound to the specified Java type.
static java.lang.String JAXBRIContext.mangleNameToClassName(java.lang.String localName)
          Computes a Java class name from a local name.
static java.lang.String JAXBRIContext.mangleNameToPropertyName(java.lang.String localName)
          Computes a Java class name from a local name.
static java.lang.String JAXBRIContext.mangleNameToVariableName(java.lang.String localName)
          Computes a Java identifier from a local name.
 void Bridge.marshal(BridgeContext context, T object, org.xml.sax.ContentHandler contentHandler)
           
 void Bridge.marshal(BridgeContext context, T object, org.w3c.dom.Node output)
           
 void Bridge.marshal(BridgeContext context, T object, java.io.OutputStream output, javax.xml.namespace.NamespaceContext nsContext)
           
 void Bridge.marshal(BridgeContext context, T object, javax.xml.transform.Result result)
           
 void Bridge.marshal(BridgeContext context, T object, javax.xml.stream.XMLStreamWriter output)
           
abstract  void Bridge.marshal(Marshaller m, T object, org.xml.sax.ContentHandler contentHandler)
           
abstract  void Bridge.marshal(Marshaller m, T object, org.w3c.dom.Node output)
           
abstract  void Bridge.marshal(Marshaller m, T object, java.io.OutputStream output, javax.xml.namespace.NamespaceContext nsContext)
           
abstract  void Bridge.marshal(Marshaller m, T object, javax.xml.transform.Result result)
           
abstract  void Bridge.marshal(Marshaller m, T object, javax.xml.stream.XMLStreamWriter output)
           
static JAXBRIContext JAXBRIContext.newInstance(java.lang.Class[] classes, java.util.Collection<TypeReference> typeRefs, java.util.Map<java.lang.Class,java.lang.Class> subclassReplacements, java.lang.String defaultNamespaceRemap, boolean c14nSupport, RuntimeAnnotationReader ar)
          Creates a new JAXBRIContext.
static JAXBRIContext JAXBRIContext.newInstance(java.lang.Class[] classes, java.util.Collection<TypeReference> typeRefs, java.lang.String defaultNamespaceRemap, boolean c14nSupport)
          Deprecated. Compatibility with older versions.
abstract  java.lang.Class<?> ClassResolver.resolveElementName(java.lang.String nsUri, java.lang.String localName)
          JAXB calls this method when it sees an unknown element.
abstract  java.lang.Class<?> ClassResolver.resolveElementName(java.lang.String nsUri, java.lang.String localName)
          JAXB calls this method when it sees an unknown element.
 T Bridge.unmarshal(BridgeContext context, java.io.InputStream in)
           
 T Bridge.unmarshal(BridgeContext context, java.io.InputStream in)
           
 T Bridge.unmarshal(BridgeContext context, org.w3c.dom.Node n)
           
 T Bridge.unmarshal(BridgeContext context, org.w3c.dom.Node n)
           
 T Bridge.unmarshal(BridgeContext context, javax.xml.transform.Source in)
           
 T Bridge.unmarshal(BridgeContext context, javax.xml.transform.Source in)
           
 T Bridge.unmarshal(BridgeContext context, javax.xml.stream.XMLStreamReader in)
           
 T Bridge.unmarshal(BridgeContext context, javax.xml.stream.XMLStreamReader in)
           
 T Bridge.unmarshal(java.io.InputStream in)
          Unmarshals the specified type object.
 T Bridge.unmarshal(org.w3c.dom.Node n)
          Unmarshals the specified type object.
 T Bridge.unmarshal(org.w3c.dom.Node n, AttachmentUnmarshaller au)
           
 T Bridge.unmarshal(javax.xml.transform.Source in)
          Unmarshals the specified type object.
 T Bridge.unmarshal(javax.xml.transform.Source in, AttachmentUnmarshaller au)
           
abstract  T Bridge.unmarshal(Unmarshaller u, java.io.InputStream in)
           
abstract  T Bridge.unmarshal(Unmarshaller u, java.io.InputStream in)
           
abstract  T Bridge.unmarshal(Unmarshaller context, org.w3c.dom.Node n)
           
abstract  T Bridge.unmarshal(Unmarshaller context, org.w3c.dom.Node n)
           
abstract  T Bridge.unmarshal(Unmarshaller u, javax.xml.transform.Source in)
           
abstract  T Bridge.unmarshal(Unmarshaller u, javax.xml.transform.Source in)
           
abstract  T Bridge.unmarshal(Unmarshaller u, javax.xml.stream.XMLStreamReader in)
           
abstract  T Bridge.unmarshal(Unmarshaller u, javax.xml.stream.XMLStreamReader in)
           
 T Bridge.unmarshal(javax.xml.stream.XMLStreamReader in)
          Unmarshals the specified type object.
 T Bridge.unmarshal(javax.xml.stream.XMLStreamReader in, AttachmentUnmarshaller au)
           
 

Uses of NotNull in com.sun.xml.bind.v2.runtime
 

Methods in com.sun.xml.bind.v2.runtime with annotations of type NotNull
 BridgeContext JAXBContextImpl.createBridgeContext()
           
 java.lang.CharSequence FilterTransducer.print(T o)
           
 java.lang.CharSequence InlineBinaryTransducer.print(V o)
           
 java.lang.CharSequence Transducer.print(ValueT o)
          Converts the given value to its lexical representation.
 

Method parameters in com.sun.xml.bind.v2.runtime with annotations of type NotNull
 int NamespaceContext2.force(java.lang.String uri, java.lang.String prefix)
          Forcibly make a namespace declaration in effect.
 int NamespaceContext2.force(java.lang.String uri, java.lang.String prefix)
          Forcibly make a namespace declaration in effect.
 javax.xml.namespace.QName JaxBeanInfo.getTypeName(BeanT instance)
          Returns the XML type name to be used to marshal the specified instance.
 javax.xml.namespace.QName Transducer.getTypeName(ValueT instance)
          Transducers implicitly work against a single XML type, but sometimes (most notably XMLGregorianCalendar, an instance may choose different XML types.
 java.lang.CharSequence FilterTransducer.print(T o)
           
 java.lang.CharSequence InlineBinaryTransducer.print(V o)
           
 java.lang.CharSequence Transducer.print(ValueT o)
          Converts the given value to its lexical representation.
 void Transducer.writeLeafElement(XMLSerializer w, Name tagName, ValueT o, java.lang.String fieldName)
          Sends the result of the Transducer.print(Object) operation to one of the XMLSerializer.leafElement(Name, String, String) method.
 

Uses of NotNull in com.sun.xml.bind.v2.runtime.output
 

Method parameters in com.sun.xml.bind.v2.runtime.output with annotations of type NotNull
 int NamespaceContextImpl.force(java.lang.String uri, java.lang.String prefix)
           
 int NamespaceContextImpl.force(java.lang.String uri, java.lang.String prefix)
           
 int NamespaceContextImpl.put(java.lang.String uri, java.lang.String prefix)
          Puts this new binding into the declared prefixes list without doing any duplicate check.
 

Uses of NotNull in com.sun.xml.bind.v2.runtime.reflect
 

Method parameters in com.sun.xml.bind.v2.runtime.reflect with annotations of type NotNull
abstract  java.lang.CharSequence TransducedAccessor.print(BeanT o)
          Prints the responsible field of the given bean to the writer.
 

Uses of NotNull in com.sun.xml.wss.provider.wsit
 

Methods in com.sun.xml.wss.provider.wsit with annotations of type NotNull
 com.sun.xml.ws.api.pipe.Tube ClientPipeCreator.createSecurityTube(ClientTubelineAssemblyContext context)
           
 com.sun.xml.ws.api.pipe.Tube ServerPipeCreator.createSecurityTube(ServerTubelineAssemblyContext context)
           
 

Method parameters in com.sun.xml.wss.provider.wsit with annotations of type NotNull
<T> T
IdentityEPRExtnContributor.getSPI(java.lang.Class<T> spiType)
           
 



Copyright © 2005-2011 Oracle Corporation. All Rights Reserved.