Uses of Class
org.glassfish.jersey.server.model.MethodList

Packages that use MethodList
org.glassfish.jersey.server.model Jersey server-side application & resource modeling classes. 
 

Uses of MethodList in org.glassfish.jersey.server.model
 

Methods in org.glassfish.jersey.server.model that return MethodList
 MethodList MethodList.filter(MethodList.Filter filter)
          Created a new method list containing only the methods supported by the method list filter.
 MethodList MethodList.hasNumParams(int paramCount)
          Get a new sub-list of methods containing all the methods from this method list that have the specific number of parameters.
 MethodList MethodList.hasReturnType(Class<?> returnType)
          Get a new sub-list of methods containing all the methods from this method list that declare the specified return type.
 MethodList MethodList.isNotPublic()
          Get a new sub-list of methods containing all the methods from this method list that are not public.
 MethodList MethodList.nameStartsWith(String prefix)
          Get a new sub-list of methods containing all the methods from this method list with a specified method name prefix.
<T extends Annotation>
MethodList
MethodList.withAnnotation(Class<T> annotation)
          Get a new sub-list of methods containing all the methods from this method list with a specified method-level annotation declared.
<T extends Annotation>
MethodList
MethodList.withMetaAnnotation(Class<T> annotation)
          Get a new sub-list of methods containing all the methods from this method list with a method-level annotation declared that is itself annotated with a specified meta-annotation.
<T extends Annotation>
MethodList
MethodList.withoutAnnotation(Class<T> annotation)
          Get a new sub-list of methods containing all the methods from this method list without a specified method-level annotation declared.
<T extends Annotation>
MethodList
MethodList.withoutMetaAnnotation(Class<T> annotation)
          Get a new sub-list of methods containing all the methods from this method list without any method-level annotation declared that would itself be annotated with a specified meta-annotation.
 



Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.