- Sort Score
- Result 10 results
- Languages All
Results 401 - 410 of 1,134 for isInteger (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/labeltype/CreateForm.java
/** * Creates a new CreateForm instance. */ public CreateForm() { } /** * The CRUD mode for the form. */ @ValidateTypeFailure public Integer crudMode; /** * The name of the label type. */ @Required @Size(max = 100) public String name; /** * The value of the label type (alphanumeric and underscore only).
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/scheduler/CreateForm.java
/** * Creates a new CreateForm instance. */ public CreateForm() { } /** * The CRUD mode for the form. */ @ValidateTypeFailure public Integer crudMode; /** * The name of the scheduled job. */ @Required @Size(max = 100) public String name; /** * The target class for the scheduled job. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 3.2K bytes - Viewed (0) -
android/guava-tests/benchmark/com/google/common/math/IntMathRoundingBenchmark.java
private static final int[] ints = new int[ARRAY_SIZE]; @BeforeExperiment void setUp() { for (int i = 0; i < ARRAY_SIZE; i++) { positive[i] = randomPositiveBigInteger(Integer.SIZE - 2).intValue(); nonzero[i] = randomNonZeroBigInteger(Integer.SIZE - 2).intValue(); ints[i] = RANDOM_SOURCE.nextInt(); } } @Param({"DOWN", "UP", "FLOOR", "CEILING", "HALF_EVEN", "HALF_UP", "HALF_DOWN"}) RoundingMode mode;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 2.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/graph/AbstractStandardDirectedGraphTest.java
Set<Integer> nodes = graph.nodes(); assertThrows(UnsupportedOperationException.class, () -> nodes.add(N2)); addNode(N1); assertThat(graph.nodes()).containsExactlyElementsIn(nodes); } @Override @Test public void adjacentNodes_checkReturnedSetMutability() { assume().that(graphIsMutable()).isTrue(); addNode(N1); Set<Integer> adjacentNodes = graph.adjacentNodes(N1);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 13.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/math/DoubleMathTest.java
*/ @GwtCompatible @NullUnmarked public class DoubleMathTest extends TestCase { private static final BigDecimal MAX_INT_AS_BIG_DECIMAL = BigDecimal.valueOf(Integer.MAX_VALUE); private static final BigDecimal MIN_INT_AS_BIG_DECIMAL = BigDecimal.valueOf(Integer.MIN_VALUE); private static final BigDecimal MAX_LONG_AS_BIG_DECIMAL = BigDecimal.valueOf(Long.MAX_VALUE);
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 27.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/base/SearchForm.java
*/ @ValidateTypeFailure public Integer start; /** * The offset for search results. */ @ValidateTypeFailure public Integer offset; /** * The page number for pagination. */ @ValidateTypeFailure public Integer pn; /** * Similar document hash for finding related documents. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
README.md
MyBean newBean = BeanUtil.copyMapToNewBean(map, MyBean.class); ``` ### Type Conversion ```java import org.codelibs.core.convert.*; // Safe type conversions with null handling Integer value = IntegerConversionUtil.toInteger("123"); // Returns 123 Integer nullValue = IntegerConversionUtil.toInteger(null); // Returns null Boolean flag = BooleanConversionUtil.toBoolean("true"); // Returns true
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sun Aug 31 02:56:02 UTC 2025 - 12.7K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/testing/FreshValueGeneratorTest.java
public void testImmutableMap() { assertFreshInstance(new TypeToken<ImmutableMap<String, Integer>>() {}); } public void testImmutableSortedMap() { assertFreshInstance(new TypeToken<ImmutableSortedMap<String, Integer>>() {}); } public void testImmutableMultimap() { assertFreshInstance(new TypeToken<ImmutableMultimap<String, Integer>>() {}); assertNotInstantiable(new TypeToken<ImmutableMultimap<EmptyEnum, String>>() {});
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Dec 19 18:03:30 UTC 2024 - 17.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/ioctl/SrvCopyChunkCopyResponseTest.java
int bytesDecoded = response.decode(buffer, 0, buffer.length); assertEquals(12, bytesDecoded); assertEquals(Integer.MAX_VALUE, response.getChunksWritten()); assertEquals(Integer.MAX_VALUE, response.getChunkBytesWritten()); assertEquals(Integer.MAX_VALUE, response.getTotalBytesWritten());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 19.8K bytes - Viewed (0) -
dbflute_fess/dfprop/databaseInfoMap.dfprop
# | NUMERIC | java.math.BigDecimal | decimal? | # | DECIMAL | java.math.BigDecimal | decimal? | # | TINYINT | java.lang.Integer | int? | # | SMALLINT | java.lang.Integer | int? | # | INTEGER | java.lang.Integer | int? | # | BIGINT | java.lang.Long | long? | # | REAL | java.math.BigDecimal | decimal? |
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Oct 31 23:35:14 UTC 2015 - 7.3K bytes - Viewed (0)