Tabnine Logo
TypedCollections.dynamicallyCastList
Code IndexAdd Tabnine to your IDE (free)

How to use
dynamicallyCastList
method
in
javax.faces.webapp.TypedCollections

Best Java code snippets using javax.faces.webapp.TypedCollections.dynamicallyCastList (Showing top 20 results out of 315)

origin: javax.faces/com.springsource.javax.faces

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  Map<String,Object> requestMap =
     context.getExternalContext().getRequestMap();
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
     requestMap.get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<UIComponentClassicTagBase>();
    requestMap.put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: javax/javaee-web-api

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
      context.getAttributes().get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<>();
    context.getAttributes().put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: com.sun.faces/jsf-api

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
      context.getAttributes().get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<UIComponentClassicTagBase>();
    context.getAttributes().put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: org.glassfish/javax.faces

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
      context.getAttributes().get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<>();
    context.getAttributes().put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: org.jboss.spec.javax.faces/jboss-jsf-api_2.0_spec

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
      context.getAttributes().get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<UIComponentClassicTagBase>();
    context.getAttributes().put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: javax.faces/javax.faces-api

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
      context.getAttributes().get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<>();
    context.getAttributes().put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: eclipse-ee4j/mojarra

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
      context.getAttributes().get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<>();
    context.getAttributes().put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: org.glassfish/jakarta.faces

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
      context.getAttributes().get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<>();
    context.getAttributes().put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: jboss/jboss-javaee-specs

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
      context.getAttributes().get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<>();
    context.getAttributes().put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: eclipse-ee4j/mojarra

/**
 * <p>Push the specified {@link UIComponentTag} instance onto our component
 * tag stack, creating a stack if necessary.</p>
 */
private void pushUIComponentClassicTagBase() {
  List<UIComponentClassicTagBase> list = TypedCollections.dynamicallyCastList((List)
      context.getAttributes().get(COMPONENT_TAG_STACK_ATTR), UIComponentClassicTagBase.class);
  if (list == null) {
    //noinspection CollectionWithoutInitialCapacity
    list = new ArrayList<>();
    context.getAttributes().put(COMPONENT_TAG_STACK_ATTR, list);
  }
  list.add(this);
}
origin: javax.faces/com.springsource.javax.faces

List<String> oldList = TypedCollections.dynamicallyCastList(
  (List) component.getAttributes().get(JSP_CREATED_FACET_NAMES), String.class);
if (oldList != null) {
origin: com.sun.faces/jsf-api

List<String> oldList = TypedCollections.dynamicallyCastList((List)oldValue, String.class);
origin: javax/javaee-web-api

List<String> oldList = TypedCollections.dynamicallyCastList((List)oldValue, String.class);
origin: org.glassfish/javax.faces

List<String> oldList = TypedCollections.dynamicallyCastList((List)oldValue, String.class);
origin: eclipse-ee4j/mojarra

List<String> oldList = TypedCollections.dynamicallyCastList((List)oldValue, String.class);
origin: javax.faces/com.springsource.javax.faces

List<String> oldList = TypedCollections.dynamicallyCastList(
  (List) component.getAttributes().get(JSP_CREATED_COMPONENT_IDS), String.class);
if (oldList != null && !oldList.isEmpty()) {
origin: javax.faces/javax.faces-api

List<String> oldList = TypedCollections.dynamicallyCastList((List)oldValue, String.class);
origin: org.jboss.spec.javax.faces/jboss-jsf-api_2.0_spec

List<String> oldList = TypedCollections.dynamicallyCastList((List)oldValue, String.class);
origin: org.glassfish/jakarta.faces

List<String> oldList = TypedCollections.dynamicallyCastList((List)oldValue, String.class);
origin: javax/javaee-web-api

List<String> oldList = TypedCollections.dynamicallyCastList((List)oldValue, String.class);
javax.faces.webappTypedCollectionsdynamicallyCastList

Javadoc

Dynamically check that the members of the list are all instances of the given type (or null).

Popular methods of TypedCollections

  • dynamicallyCastSet
    Dynamically check that the members of the set are all instances of the given type (or null).
  • checkCollectionMembers
    Dynamically check that the members of the collection are all instances of the given type (or null).
  • dynamicallyCastCollection
    Dynamically check that the members of the collection are all instances of the given type (or null),
  • dynamicallyCastMap
    Dynamically check that the keys and values in the map are all instances of the correct types (or nul

Popular in Java

  • Running tasks concurrently on multiple threads
  • getSystemService (Context)
  • getSupportFragmentManager (FragmentActivity)
  • startActivity (Activity)
  • Color (java.awt)
    The Color class is used to encapsulate colors in the default sRGB color space or colors in arbitrary
  • RandomAccessFile (java.io)
    Allows reading from and writing to a file in a random-access manner. This is different from the uni-
  • ByteBuffer (java.nio)
    A buffer for bytes. A byte buffer can be created in either one of the following ways: * #allocate
  • Calendar (java.util)
    Calendar is an abstract base class for converting between a Date object and a set of integer fields
  • TimeUnit (java.util.concurrent)
    A TimeUnit represents time durations at a given unit of granularity and provides utility methods to
  • Runner (org.openjdk.jmh.runner)
  • Top PhpStorm 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