- Sort Score
- Result 10 results
- Languages All
Results 111 - 120 of 547 for Enum (0.03 sec)
-
android/guava-testlib/src/com/google/common/collect/testing/TestEnumSetGenerator.java
import com.google.common.annotations.GwtCompatible; import com.google.common.collect.testing.SampleElements.Enums; import java.util.List; import java.util.Set; /** * An abstract TestSetGenerator for generating sets containing enum values. * * @author Kevin Bourrillion */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class TestEnumSetGenerator implements TestSetGenerator<AnEnum> { @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/UserAgentHelper.java
} request.setAttribute(USER_AGENT_TYPE, uaType); } return uaType; }).orElse(UserAgentType.OTHER); } public enum UserAgentType { IE, FIREFOX, CHROME, SAFARI, OPERA, OTHER; }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 2.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/plugin/annotations/After.java
@Documented @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited public @interface After { /** * Type of pointer. * @see org.apache.maven.api.Lifecycle.Pointer.Type */ enum Type { PROJECT, DEPENDENCIES, CHILDREN } /** * The phase name. */ String phase(); /** * The type of this pointer. */
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 29 05:48:54 UTC 2024 - 1.8K bytes - Viewed (0) -
.teamcity/src/main/kotlin/common/JvmVersion.kt
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package common enum class JvmVersion(val major: Int) { java7(7), java8(8), java11(11), java17(17), java21(21), java23(23),
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 25 15:57:12 UTC 2024 - 767 bytes - Viewed (0) -
android/guava-tests/test/com/google/common/io/TestOption.java
* limitations under the License. */ package com.google.common.io; /** * Options controlling the behavior of sources/sinks/streams for testing. * * @author Colin Decker */ public enum TestOption { OPEN_THROWS, SKIP_THROWS, READ_THROWS, WRITE_THROWS, CLOSE_THROWS, AVAILABLE_ALWAYS_ZERO
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Apr 21 02:27:51 UTC 2017 - 870 bytes - Viewed (0) -
guava-tests/test/com/google/common/io/TestOption.java
* limitations under the License. */ package com.google.common.io; /** * Options controlling the behavior of sources/sinks/streams for testing. * * @author Colin Decker */ public enum TestOption { OPEN_THROWS, SKIP_THROWS, READ_THROWS, WRITE_THROWS, CLOSE_THROWS, AVAILABLE_ALWAYS_ZERO
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 08 16:34:30 UTC 2013 - 870 bytes - Viewed (0) -
mockwebserver-deprecated/src/main/kotlin/okhttp3/mockwebserver/SocketPolicy.kt
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package okhttp3.mockwebserver enum class SocketPolicy { SHUTDOWN_SERVER_AFTER_RESPONSE, KEEP_OPEN, DISCONNECT_AT_END, UPGRADE_TO_SSL_AT_END, DISCONNECT_AT_START, DISCONNECT_AFTER_REQUEST, DISCONNECT_DURING_REQUEST_BODY,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/log/LogType.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.log; /** * @author shinsuke * */ public enum LogType { START_CRAWLING, // CLEANUP_CRAWLING, // UNSUPPORTED_URL_AT_CRAWLING_STARTED, // CHECK_LAST_MODIFIED, // NOT_MODIFIED, // GET_CONTENT, // REDIRECT_LOCATION, //
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 1.2K bytes - Viewed (0) -
guava-tests/test/com/google/common/collect/ImmutableMultisetFloodingTest.java
"count", (ms, o) -> { int unused = ms.count(o); }, Math::log))); } /** All the ways to create an ImmutableMultiset. */ enum ConstructionPathway implements Construction<Multiset<Object>> { COPY_OF_COLLECTION { @Override public ImmutableMultiset<Object> create(List<?> keys) { return ImmutableMultiset.copyOf(keys); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 2.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/FeatureSpecificTestSuiteBuilder.java
List<String> temp = new ArrayList<>(); for (Feature<?> feature : features) { Object featureAsObject = feature; // to work around bogus JDK warning if (featureAsObject instanceof Enum) { Enum<?> f = (Enum<?>) featureAsObject; temp.add(f.getDeclaringClass().getSimpleName() + "." + feature); } else { temp.add(feature.toString()); } } return temp.toString(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 10.4K bytes - Viewed (0)