CaseFormat 類別是一個實用程式類,用於在各種ASCII 大小寫格式之間進行轉換-
方法和描述 | ||
---|---|---|
clone() | 重寫Cloneable。 | |
equals(Object obj ) | 覆蓋等於。 | |
格式(雙數字) | 格式的特殊化。 | |
format(double number, StringBuffer toAppendTo, FieldPosition pos) | format(double number, StringBuffer toAppendTo , FieldPosition pos) | p>格式的特殊化。 |
格式(長數字) | 格式的特殊化。 | |
#format(long number, StringBuffer toAppendTo, FieldPosition pos) | 格式的特殊化。 |
import com.google.common.base.CaseFormat; public class GuavaTester { public static void main(String args[]) { GuavaTester tester = new GuavaTester(); tester.testCaseFormat(); } private void testCaseFormat() { String data = "test_data"; System.out.println(CaseFormat.LOWER_HYPHEN.to(CaseFormat.LOWER_CAMEL, "test-data")); System.out.println(CaseFormat.LOWER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, "test_data")); System.out.println(CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, "test_data")); } }
C:\Guava>javac GuavaTester.java
C:\Guava>java GuavaTester
testData testData TestData
以上是Java中的CaseFormat類的詳細內容。更多資訊請關注PHP中文網其他相關文章!