Tabnine Logo
ConfigPropertyTypeImpl
Code IndexAdd Tabnine to your IDE (free)

How to use
ConfigPropertyTypeImpl
in
org.jboss.jca.embedded.dsl.datasources10.impl

Best Java code snippets using org.jboss.jca.embedded.dsl.datasources10.impl.ConfigPropertyTypeImpl (Showing top 6 results out of 315)

origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Creates a new <code>config-property</code> element 
* @return the new created instance of <code>ConfigPropertyType<ExtensionType<T>></code> 
*/
public ConfigPropertyType<ExtensionType<T>> createConfigProperty()
{
 return new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Creates a new <code>config-property</code> element 
* @return the new created instance of <code>ConfigPropertyType<ExtensionType<T>></code> 
*/
public ConfigPropertyType<ExtensionType<T>> createConfigProperty()
{
 return new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode);
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* Returns all <code>config-property</code> elements
* @return list of <code>config-property</code> 
*/
public List<ConfigPropertyType<ExtensionType<T>>> getAllConfigProperty()
{
 List<ConfigPropertyType<ExtensionType<T>>> list = new ArrayList<ConfigPropertyType<ExtensionType<T>>>();
 List<Node> nodeList = childNode.get("config-property");
 for(Node node: nodeList)
 {
   ConfigPropertyType<ExtensionType<T>>  type = new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* Returns all <code>config-property</code> elements
* @return list of <code>config-property</code> 
*/
public List<ConfigPropertyType<ExtensionType<T>>> getAllConfigProperty()
{
 List<ConfigPropertyType<ExtensionType<T>>> list = new ArrayList<ConfigPropertyType<ExtensionType<T>>>();
 List<Node> nodeList = childNode.get("config-property");
 for(Node node: nodeList)
 {
   ConfigPropertyType<ExtensionType<T>>  type = new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode, node);
   list.add(type);
 }
 return list;
}
origin: org.jboss.ironjacamar.jdk8/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<ExtensionType<T>> getOrCreateConfigProperty()
{
 List<Node> nodeList = childNode.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode, nodeList.get(0));
 }
 return createConfigProperty();
}
origin: org.jboss.ironjacamar/ironjacamar-embedded

/**
* If not already created, a new <code>config-property</code> element will be created and returned.
* Otherwise, the first existing <code>config-property</code> element will be returned.
* @return the instance defined for the element <code>config-property</code> 
*/
public ConfigPropertyType<ExtensionType<T>> getOrCreateConfigProperty()
{
 List<Node> nodeList = childNode.get("config-property");
 if (nodeList != null &&  nodeList.size() > 0)
 {
   return new ConfigPropertyTypeImpl<ExtensionType<T>>(this, "config-property", childNode, nodeList.get(0));
 }
 return createConfigProperty();
}
org.jboss.jca.embedded.dsl.datasources10.implConfigPropertyTypeImpl

Javadoc

This class implements the config-propertyType xsd type

Most used methods

  • <init>

Popular in Java

  • Updating database using SQL prepared statement
  • getSupportFragmentManager (FragmentActivity)
  • getSystemService (Context)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • BufferedWriter (java.io)
    Wraps an existing Writer and buffers the output. Expensive interaction with the underlying reader is
  • Path (java.nio.file)
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Properties (java.util)
    A Properties object is a Hashtable where the keys and values must be Strings. Each property can have
  • BoxLayout (javax.swing)
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now