- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 130 for parameterized (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/core/beans/ParameterizedClassDesc.java
import java.lang.reflect.ParameterizedType; /** * Interface for handling parameterized classes. * * @author koichik */ public interface ParameterizedClassDesc { /** * Returns <code>true</code> if the class represented by this instance is parameterized. * * @return <code>true</code> if the class represented by this instance is parameterized */ boolean isParameterizedClass(); /**Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 1.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/graph/StandardImmutableUndirectedGraphTest.java
import java.util.Collection; import org.jspecify.annotations.NullUnmarked; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; /** Tests for an undirected {@link StandardMutableGraph}. */ @AndroidIncompatible @RunWith(Parameterized.class) @NullUnmarked public final class StandardImmutableUndirectedGraphTest extends AbstractStandardUndirectedGraphTest {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 1.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/MethodDesc.java
* * @param index * the index of the parameter * @return {@literal true} if the parameter type at the specified index is parameterized */ boolean isParameterized(int index); /** * Returns {@literal true} if the return type is parameterized. *Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 5.9K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
/** * Returns {@literal true} if this property is parameterized. * * @return {@literal true} if this property is parameterized */ boolean isParameterized(); /** * Returns the information if this property is parameterized. * * @return the information if this property is parameterized, otherwise {@literal null} */Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 4.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/ConstructorDesc.java
* * @param index * The index of the parameter * @return The key type if the parameter type is a parameterized {@link Map}, otherwise {@literal null} */ Class<?> getKeyClassOfMap(int index); /** * Returns the value type if the parameter type of the method is a parameterized {@link Map}. * * @param indexCreated: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 3.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/FieldDesc.java
* Returns the element type if this field is a parameterized {@link Collection}. * * @return the element type if this field is a parameterized {@link Collection}, otherwise {@literal null} */ Class<?> getElementClassOfCollection(); /** * Returns the key type if this field is a parameterized {@link Map}. * * @return the key type if this field is a parameterized {@link Map}, otherwise {@literal null} */Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 4K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/impl/MethodDescImpl.java
/** The return type of the method */ protected final Class<?> returnType; /** Information about parameterized argument types */ protected final ParameterizedClassDesc[] parameterizedClassDescs; /** Information about the parameterized return type */ protected final ParameterizedClassDesc parameterizedClassDesc; /** * Constructs an instance. *Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 7.3K bytes - Click Count (1) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
} /** * Returns the element type of the parameterized collection declared as the method's argument type. * * @param method * The method. Cannot be {@literal null} * @param position * The position of the parameterized collection in the method's argument list * @return The element type of the parameterized collection */Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 12.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/graph/StandardImmutableDirectedGraphTest.java
import java.util.Collection; import org.jspecify.annotations.NullUnmarked; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; /** Tests for a directed {@link StandardMutableGraph}. */ @AndroidIncompatible @RunWith(Parameterized.class) @NullUnmarked public final class StandardImmutableDirectedGraphTest extends AbstractStandardDirectedGraphTest {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 1.8K bytes - Click Count (0) -
guava-tests/test/com/google/common/graph/StandardImmutableUndirectedGraphTest.java
import java.util.Collection; import org.jspecify.annotations.NullUnmarked; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; /** Tests for an undirected {@link StandardMutableGraph}. */ @AndroidIncompatible @RunWith(Parameterized.class) @NullUnmarked public final class StandardImmutableUndirectedGraphTest extends AbstractStandardUndirectedGraphTest {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 1.9K bytes - Click Count (0)