Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for id (0.11 sec)

  1. pom.xml

    					<release>17</release>
    				</configuration>
    			</plugin>
    			<plugin>
    				<artifactId>maven-source-plugin</artifactId>
    				<version>3.2.1</version>
    				<executions>
    					<execution>
    						<id>source-jar</id>
    						<phase>package</phase>
    						<goals>
    							<goal>jar</goal>
    						</goals>
    					</execution>
    				</executions>
    			</plugin>
    			<plugin>
    				<artifactId>maven-javadoc-plugin</artifactId>
    XML
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:58:02 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/lang/StringUtilTest.java

            assertNull(StringUtil.camelize(null));
            assertEquals("Emp", StringUtil.camelize("EMP"));
            assertEquals("AaaBbb", StringUtil.camelize("AAA_BBB"));
            assertEquals("UserId", StringUtil.camelize("USER_ID"));
        }
    
        /**
         * @throws Exception
         */
        @Test
        public void testDecamelize() throws Exception {
            assertNull(StringUtil.decamelize(null));
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 12K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/lang/StringUtil.java

            buf.append(Integer.toHexString(i & 0xff));
        }
    
        /**
         * _記法をキャメル記法に変換します。
         * <p>
         * 次のように使います.
         * </p>
         *
         * <pre>
         * StringUtil.camelize("USER_ID")  = "UserId"
         * </pre>
         *
         * @param s
         *            テキスト
         * @return 結果の文字列
         */
        public static String camelize(String s) {
            if (s == null) {
                return null;
    Java
    - Registered: Fri May 03 20:58:11 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.7K bytes
    - Viewed (0)
Back to top