コード例 #1
0
ファイル: AdlUtils.java プロジェクト: josealmeida/adl2-core
 public static Class<? extends CObject> getAmClass(@Nonnull String amTypeName)
     throws ClassNotFoundException {
   int genericsTypeIndex = amTypeName.indexOf('<');
   String name = genericsTypeIndex == -1 ? amTypeName : amTypeName.substring(0, genericsTypeIndex);
   String className = CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name);
   //noinspection unchecked
   return (Class<CObject>) Class.forName(AM_PACKAGE_NAME + '.' + className);
 }
コード例 #2
0
 public String value() {
   return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name());
 }
コード例 #3
0
ファイル: Snapshot.java プロジェクト: rahulbhawsar/jclouds
 @Override
 public String toString() {
   return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, name());
 }
コード例 #4
0
ファイル: Scheme.java プロジェクト: lmy0854/jclouds-labs-aws
 public String value() {
   return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_HYPHEN, name());
 }
コード例 #5
0
 EscapingMode(boolean escapesQuotes, @Nullable ContentKind contentKind, boolean internalOnly) {
   this.directiveName = "|" + CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, name());
   this.isHtmlEmbeddable = escapesQuotes;
   this.contentKind = contentKind;
   this.isInternalOnly = internalOnly;
 }
コード例 #6
0
 @Override
 public String getOreDictKey() {
   return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_CAMEL, name());
 }
コード例 #7
0
ファイル: Metadata.java プロジェクト: normanmaurer/jclouds
 public String key() {
   return CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.LOWER_UNDERSCORE, name());
 }