- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 199 for literally (0.06 sec)
-
src/main/java/org/codelibs/core/collection/Maps.java
* By statically importing this class, you can easily initialize {@literal Map} instances as follows: * </p> * * <pre> * import static org.codelibs.core.collection.Maps.*; * * Map<String, Integer> map = map("a", 1).$("b", 2).$("c", 3).$(); * </pre> * * @author koichik * @param <K> the key type of the {@literal Map} * @param <V> the value type of the {@literal Map} */ public class Maps<K, V> {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 7.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
* @param paramTypes * array of parameter types * @param args * array of arguments * @param adjustNumber * if {@literal true}, converts arguments to match number types if necessary * @return {@literal true} if the arguments are suitable for the parameter types */ protected boolean isSuitable(final Class<?>[] paramTypes, final Object[] args, final boolean adjustNumber) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
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/MethodDesc.java
* * @return {@literal true} if the method is {@literal final} */ boolean isFinal(); /** * Returns {@literal true} if the method is {@literal abstract}. * * @return {@literal true} if the method is {@literal abstract} */ boolean isAbstract(); /**
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/BeanDesc.java
* @param propertyName * The property name. Must not be {@literal null} or empty string * @return Whether the {@link PropertyDesc} exists */ boolean hasPropertyDesc(String propertyName); /** * Returns the {@link PropertyDesc}. * * @param propertyName * The property name. Must not be {@literal null} or empty string * @return {@link PropertyDesc} */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 24 01:52:43 UTC 2025 - 7.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/io/CopyUtil.java
* * @param in the input file (must not be {@literal null}) * @param inputEncoding the input file encoding (must not be {@literal null} or empty) * @param out the output file (must not be {@literal null}) * @param outputEncoding the output file encoding (must not be {@literal null} or empty) * @return the number of characters copied */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 45.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ClassIterator.java
* * @param clazz * the class (must not be {@literal null}) */ public ClassIterator(final Class<?> clazz) { this(clazz, true); } /** * Constructs an instance. * * @param clazz the class (must not be {@literal null}) * @param includeObject if {@literal true}, includes the {@link Object} class in the iteration */
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 3.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/sql/StatementUtil.java
*/ protected StatementUtil() { } /** * Executes the SQL. * * @param statement * {@link Statement}. Must not be {@literal null}. * @param sql * SQL string. Must not be {@literal null} or empty. * @return The result of the execution. * @see Statement#execute(String) */ public static boolean execute(final Statement statement, final String sql) {
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/MethodUtil.java
buf.append(")"); return buf.toString(); } /** * Returns whether the method is the {@literal equals(Object)} method. * * @param method * The method. Cannot be {@literal null} * @return {@literal true} if the method is {@literal equals(Object)} */ public static boolean isEqualsMethod(final Method method) { assertArgumentNotNull("method", method);
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 12.6K bytes - Viewed (0)