aliyun-ecs/src/main/java/org/jclouds/aliyun/ecs/domain/EipAddress.java [32:50]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      DEFAULT("");

      private final String internetChargeType;

      InternetChargeType(String internetChargeType) {
         this.internetChargeType = internetChargeType;
      }

      public static InternetChargeType fromValue(String value) {
         return Enums.getIfPresent(InternetChargeType.class, CaseFormat.UPPER_CAMEL.to(CaseFormat.UPPER_UNDERSCORE, value)).or(InternetChargeType.DEFAULT);
      }

      public String internetChargeType() {
         return internetChargeType;
      }

      @Override
      public String toString() {
         return internetChargeType();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aliyun-ecs/src/main/java/org/jclouds/aliyun/ecs/domain/Instance.java [39:57]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      DEFAULT("");

      private final String internetChargeType;

      InternetChargeType(String internetChargeType) {
         this.internetChargeType = internetChargeType;
      }

      public static InternetChargeType fromValue(String value) {
         return Enums.getIfPresent(InternetChargeType.class, CaseFormat.UPPER_CAMEL.to(CaseFormat.UPPER_UNDERSCORE, value)).or(InternetChargeType.DEFAULT);
      }

      public String internetChargeType() {
         return internetChargeType;
      }

      @Override
      public String toString() {
         return internetChargeType();
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



