- Sort Score
- Result 10 results
- Languages All
Results 2051 - 2060 of 3,920 for extenders (0.04 sec)
-
src/main/java/org/codelibs/core/exception/NamingRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; import javax.naming.NamingException; /** * {@link NamingException}をラップする例外です。 * * @author higa */ public class NamingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * {@link NamingRuntimeException}を作成します。 * * @param cause * 原因となった例外 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/NoSuchPaddingRuntimeException.java
import javax.crypto.NoSuchPaddingException; /** * {@link NoSuchPaddingException}をラップする例外です。 * * @author shinsuke */ public class NoSuchPaddingRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -3176447530746274091L; /** * {@link NoSuchPaddingException}を作成します。 * * @param cause * 原因となった例外 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.3K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/ByteConversionUtilTest.java
* governing permissions and limitations under the License. */ package org.codelibs.core.convert; import junit.framework.TestCase; /** * @author higa * */ public class ByteConversionUtilTest extends TestCase { /** * @throws Exception */ public void testToByte() throws Exception { assertEquals(new Byte("100"), ByteConversionUtil.toByte("100")); } /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.4K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/DoubleConversionUtilTest.java
* governing permissions and limitations under the License. */ package org.codelibs.core.convert; import junit.framework.TestCase; /** * @author higa * */ public class DoubleConversionUtilTest extends TestCase { /** * @throws Exception */ public void testToDouble() throws Exception { assertEquals(new Double("1000.5"), DoubleConversionUtil.toDouble("1,000.5")); } /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/convert/FloatConversionUtilTest.java
* governing permissions and limitations under the License. */ package org.codelibs.core.convert; import junit.framework.TestCase; /** * @author higa * */ public class FloatConversionUtilTest extends TestCase { /** * @throws Exception */ public void testToFloat() throws Exception { assertEquals(new Float("1000.5"), FloatConversionUtil.toFloat("1,000.5")); } /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.5K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/LifecycleRegistry.java
package org.apache.maven.api.services; import java.util.List; import java.util.stream.Stream; import java.util.stream.StreamSupport; import org.apache.maven.api.Lifecycle; public interface LifecycleRegistry extends ExtensibleEnumRegistry<Lifecycle>, Iterable<Lifecycle> { default Stream<Lifecycle> stream() { return StreamSupport.stream(spliterator(), false); } List<String> computePhases(Lifecycle lifecycle);
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Thu Aug 29 05:48:54 UTC 2024 - 1.2K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/services/TransportProviderException.java
import org.apache.maven.api.annotations.Consumer; import org.apache.maven.api.annotations.Experimental; /** * @since 4.0.0 */ @Experimental @Consumer public class TransportProviderException extends MavenException { @Serial private static final long serialVersionUID = -6066070072576465969L; public TransportProviderException(String message, Throwable cause) { super(message, cause); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Oct 02 21:26:05 UTC 2024 - 1.3K bytes - Viewed (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/IntrospectionException.java
*/ package org.apache.maven.model.interpolation.reflection; /** * @deprecated use {@link org.apache.maven.api.services.ModelBuilder} instead */ @Deprecated(since = "4.0.0") public class IntrospectionException extends Exception { /** * */ private static final long serialVersionUID = -6090771282553728784L; IntrospectionException(String message) { super(message); }
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 1.3K bytes - Viewed (0) -
api/maven-api-spi/src/main/java/org/apache/maven/api/spi/LanguageProvider.java
import org.apache.maven.api.annotations.Experimental; import org.apache.maven.api.di.Named; /** * @since 4.0.0 */ @Experimental @Consumer @Named
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Sep 10 17:18:47 UTC 2024 - 1.1K bytes - Viewed (0) -
src/main/java/jcifs/util/transport/ConnectionTimeoutException.java
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ package jcifs.util.transport; /** * @author mbechler * */ public class ConnectionTimeoutException extends TransportException { /** * */ private static final long serialVersionUID = 7327198103204592731L; /** * */ public ConnectionTimeoutException () {}
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 1.4K bytes - Viewed (0)