- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 90 for setValue1 (0.14 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
src/main/java/org/codelibs/core/misc/Tuple4.java
} /** * Returns the first value. * * @return The first value */ public T1 getValue1() { return value1; } /** * Sets the first value. * * @param value1 * The first value */ public void setValue1(final T1 value1) { this.value1 = value1; } /** * Returns the second value. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 5.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/misc/Tuple5.java
/** * Returns the first value. * * @return The first value */ public T1 getValue1() { return value1; } /** * Sets the first value. * * @param value1 * The first value */ public void setValue1(final T1 value1) { this.value1 = value1; } /** * Returns the second value. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 6.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/misc/Tuple3.java
} /** * Returns the first value. * * @return The first value */ public T1 getValue1() { return value1; } /** * Sets the first value. * * @param value1 * The first value */ public void setValue1(final T1 value1) { this.value1 = value1; } /** * Returns the second value. *Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 4.6K bytes - Click Count (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);
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Fri Jun 20 13:40:57 GMT 2025 - 11K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/google/BiMapEntrySetTester.java
public void testSetValue_valueAbsent() { for (Entry<K, V> entry : getMap().entrySet()) { if (entry.getKey().equals(k0())) { assertEquals("entry.setValue() should return the old value", v0(), entry.setValue(v3())); } } expectReplacement(entry(k0(), v3())); } @MapFeature.Require(SUPPORTS_PUT) @CollectionSize.Require(SEVERAL) public void testSetValue_valuePresent() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Nov 14 23:40:07 GMT 2024 - 3K bytes - Click Count (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapEntrySetTester.java
@CollectionSize.Require(absent = ZERO) public void testSetValue() { for (Entry<K, V> entry : getMap().entrySet()) { if (entry.getKey().equals(k0())) { assertEquals("entry.setValue() should return the old value", v0(), entry.setValue(v3())); break; } } expectReplacement(entry(k0(), v3())); } @MapFeature.Require({SUPPORTS_PUT, ALLOWS_NULL_VALUES})
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Dec 16 03:23:31 GMT 2025 - 7.5K bytes - Click Count (0) -
guava-testlib/src/com/google/common/collect/testing/testers/MapEntrySetTester.java
@CollectionSize.Require(absent = ZERO) public void testSetValue() { for (Entry<K, V> entry : getMap().entrySet()) { if (entry.getKey().equals(k0())) { assertEquals("entry.setValue() should return the old value", v0(), entry.setValue(v3())); break; } } expectReplacement(entry(k0(), v3())); } @MapFeature.Require({SUPPORTS_PUT, ALLOWS_NULL_VALUES})
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Dec 16 03:23:31 GMT 2025 - 7.5K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/CombinedFuture.java
* InterruptibleTask itself might also eliminate some of the existing boilerplate for, e.g., * pendingToString().) */ CombinedFuture.this.task = null; setValue(result); } @Override final void afterRanInterruptiblyFailure(Throwable error) { // See afterRanInterruptiblySuccess. CombinedFuture.this.task = null;Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Dec 22 03:38:46 GMT 2024 - 6.8K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/MutableClassToInstanceMap.java
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Aug 11 22:10:29 GMT 2025 - 6.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/ArrayTable.java
public V getValue() { return ArrayMap.this.getValue(index); } @Override @ParametricNullness public V setValue(@ParametricNullness V value) { return ArrayMap.this.setValue(index, value); } }; } @Override Iterator<Entry<K, V>> entryIterator() { return new AbstractIndexedListIterator<Entry<K, V>>(size()) {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 26.9K bytes - Click Count (0)