- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 156 for parameterized (0.05 seconds)
-
src/main/java/org/codelibs/core/lang/GenericsUtil.java
* </p> * <p> * If <code>type</code> is a parameterized type but has no direct type arguments, an empty array is returned. * This includes cases where the parameterized type contains nested types without type arguments. * </p> * <p> * If <code>type</code> is not a parameterized type, <code>null</code> is returned. * </p> * * @param typeCreated: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 23.4K bytes - Click Count (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(); /**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) -
src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java
* <p> * If the type is not parameterized, an empty {@link Map} is returned. * </p> * * @param beanClass * The parameterized type (class or interface). Must not be {@literal null}. * @return A {@link Map} with type variables as keys and type arguments as values for the parameterized type. */Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 7.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) -
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 {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 2.1K 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/lang/FieldUtil.java
assertArgumentNotNull("field", field); return Modifier.isFinal(field.getModifiers()); } /** * Returns the element type of a parameterized collection field. * * @param field a field of a parameterized collection type (must not be {@literal null}) * @return the element type of the collection */ public static Class<?> getElementTypeOfCollection(final Field field) {
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 9.8K bytes - Click Count (0)