- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 38 for setValue2 (1.15 sec)
-
src/main/java/org/codelibs/core/misc/Tuple5.java
* * @param value1 * The first value */ public void setValue1(final T1 value1) { this.value1 = value1; } /** * Returns the second value. * * @return The second value */ public T2 getValue2() { return value2; } /** * Sets the second value. * * @param value2Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 6.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Tuple4.java
* * @param value1 * The first value */ public void setValue1(final T1 value1) { this.value1 = value1; } /** * Returns the second value. * * @return The second value */ public T2 getValue2() { return value2; } /** * Sets the second value. * * @param value2Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 5.5K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/Tuple3.java
* Sets the first value. * * @param value1 * The first value */ public void setValue1(final T1 value1) { this.value1 = value1; } /** * Returns the second value. * * @return The second value */ public T2 getValue2() { return value2; } /** * Sets the second value. * * @param value2Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.6K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/PropertyDescImplTest.java
assertThat(myBean.getURL(), is(notNullValue())); } /** * */ public void testConvertWithString() { final BeanDesc beanDesc = BeanDescFactory.getBeanDesc(MyDto.class); final PropertyDesc pd = beanDesc.getPropertyDesc("myEnum"); final MyDto dto = new MyDto(); pd.setValue(dto, "ONE"); assertEquals(MyEnum.ONE, dto.myEnum);
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Fri Jun 20 13:40:57 UTC 2025 - 11K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
if (mapping != null) { if (Constants.MAPPING_TYPE_ARRAY.equalsIgnoreCase(mapping.getValue2())) { dataMap.put(mapping.getValue1(), values); } else if (Constants.MAPPING_TYPE_STRING.equalsIgnoreCase(mapping.getValue2())) { final String joinedValue = StringUtils.join(values, ' ');
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 25.7K bytes - Viewed (0) -
src/main/java/org/codelibs/core/misc/ValueHolder.java
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/BsRequestHeader.java
this.updatedTime = value; } public String getValue() { checkSpecifiedProperty("value"); return convertEmptyToNull(value); } public void setValue(String value) { registerModifiedProperty("value"); this.value = value; } public String getWebConfigId() { checkSpecifiedProperty("webConfigId");Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Sat Mar 15 06:53:53 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/KeyMatchHelper.java
if (boostList != null) { boostList.forEach(pair -> list.add(new FilterFunctionBuilder(pair.getValue2(), pair.getValue3()))); } }); } /** * Retrieves a list of boosted documents for the specified KeyMatch. * * @param keyMatch The KeyMatch instance.
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 10.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/VirtualHostHelper.java
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/PropertyDesc.java
* * @param target * the target object. Must not be {@literal null} * @param value * the value to set to the property */ void setValue(Object target, Object value); /** * Converts the value to the appropriate type if necessary based on the property type. * * @param <T> * the converted typeRegistered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 4.3K bytes - Viewed (0)