- Sort Score
- Result 10 results
- Languages All
Results 341 - 350 of 420 for instantiate (0.05 sec)
-
src/main/java/org/codelibs/core/io/TraversalUtil.java
* </ul> * * @author koichik * @see URLUtil#toCanonicalProtocol(String) * @see ClassTraversalUtil * @see ResourceTraversalUtil */ public abstract class TraversalUtil { /** * Do not instantiate. */ protected TraversalUtil() { } /** An empty array of {@link Traverser}. */ protected static final Traverser[] EMPTY_ARRAY = new Traverser[0];
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimeConversionUtil.java
* </tr> * </table> * * @author koichik * @see DateConversionUtil * @see TimestampConversionUtil */ public abstract class TimeConversionUtil { /** * Do not instantiate. */ protected TimeConversionUtil() { } /** Array of styles held by {@link DateFormat} */ protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL }; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/convert/TimestampConversionUtil.java
* </tr> * </table> * * @author shinsuke * @see DateConversionUtil * @see TimeConversionUtil */ public abstract class TimestampConversionUtil { /** * Do not instantiate. */ protected TimestampConversionUtil() { } /** Array of styles held by {@link DateFormat} */ protected static final int[] STYLES = new int[] { SHORT, MEDIUM, LONG, FULL }; /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 20.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/MultisetNavigationTester.java
import java.util.NoSuchElementException; import org.junit.Ignore; /** * Tester for navigation of SortedMultisets. * * @author Louis Wasserman */ @GwtCompatible @Ignore("test runners must not instantiate and run this directly, only via suites we build") // @Ignore affects the Android test runner, which respects JUnit 4 annotations on JUnit 3 tests. @SuppressWarnings("JUnit4ClassUsedInJUnit3")
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 20:14:36 UTC 2024 - 26K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/util/BeanUtil.java
* </pre> * * @author Kimura Satoshi * @author higa * @author shinsuke * @see CopyOptionsUtil * @see CopyOptions */ public abstract class BeanUtil { /** * Do not instantiate. */ protected BeanUtil() { } /** Default options */ protected static final CopyOptions DEFAULT_OPTIONS = new CopyOptions(); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassUtil.java
import org.codelibs.core.exception.NoSuchMethodRuntimeException; /** * Utility class for {@link Class} operations. * * @author higa */ public abstract class ClassUtil { /** * Do not instantiate. */ protected ClassUtil() { } /** Map from wrapper types to primitive types */ protected static final Map<Class<?>, Class<?>> wrapperToPrimitiveMap = newHashMap();
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 25.6K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/GenericsUtil.java
import org.codelibs.core.collection.CollectionsUtil; /** * Utility class for handling generics in Java. * * @author koichik */ public abstract class GenericsUtil { /** * Do not instantiate. */ protected GenericsUtil() { } /** * Returns <code>true</code> if the raw type of <code>type</code> can be assigned to <code>clazz</code>, * <code>false</code> otherwise. *
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 23.4K bytes - Viewed (0) -
src/main/java/org/codelibs/core/collection/ArrayUtil.java
import java.util.List; import org.codelibs.core.message.MessageFormatter; /** * Utility class for array operations. * * @author higa */ public abstract class ArrayUtil { /** * Do not instantiate. */ protected ArrayUtil() { } /** * Returns an array of {@literal boolean}. * * @param elements the elements of the array * @return the array */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 41.5K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/Futures.java
/** * A helper to create a new {@code ListenableFuture} whose result is generated from a combination * of input futures. * * <p>See {@link #whenAllComplete} and {@link #whenAllSucceed} for how to instantiate this class. * * <p>Example: * * {@snippet : * final ListenableFuture<Instant> loginDateFuture = * loginService.findLastLoginDate(username);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 64.3K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
* Any {@link IOException} thrown by these methods is wrapped and thrown as an {@link IORuntimeException}. * </p> * * @author koichik */ public abstract class CopyUtil { /** * Do not instantiate. */ protected CopyUtil() { } /** Buffer size used for copying. */ protected static final int DEFAULT_BUF_SIZE = 4096;
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0)