- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 31 for parameterized (0.3 sec)
-
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. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.9K bytes - Viewed (0) -
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(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.7K bytes - Viewed (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} */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (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. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 7.3K bytes - Viewed (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 index
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 3.5K bytes - Viewed (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} */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/StandardMutableUndirectedGraphTest.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 class StandardMutableUndirectedGraphTest extends AbstractStandardUndirectedGraphTest {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/StandardMutableUndirectedGraphTest.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 class StandardMutableUndirectedGraphTest extends AbstractStandardUndirectedGraphTest {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.1K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/StandardImmutableDirectedNetworkTest.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 ImmutableNetwork}. */ @AndroidIncompatible @RunWith(Parameterized.class) @NullUnmarked public class StandardImmutableDirectedNetworkTest extends AbstractStandardDirectedNetworkTest {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.9K bytes - Viewed (0) -
guava-tests/test/com/google/common/graph/MapCacheTest.java
import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameters; /** Tests for {@link MapIteratorCache} and {@link MapRetrievalCache}. */ @AndroidIncompatible // TODO(cpovirk): Figure out Android JUnit 4 support. Does it work with Gingerbread? @RunWith? @RunWith(Parameterized.class) @NullUnmarked public final class MapCacheTest {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 3.2K bytes - Viewed (0)