com.squareup.moshi.Json.name()方法的使用及代码示例

x33g5p2x  于2022-01-22 转载在 其他  
字(6.9k)|赞(0)|评价(0)|浏览(104)

本文整理了Java中com.squareup.moshi.Json.name()方法的一些代码示例,展示了Json.name()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Json.name()方法的具体详情如下:
包路径:com.squareup.moshi.Json
类名称:Json
方法名:name

Json.name介绍

暂无

代码示例

代码示例来源:origin: square/moshi

  1. FallbackEnumJsonAdapter(Class<T> enumType, T defaultValue) {
  2. this.enumType = enumType;
  3. this.defaultValue = defaultValue;
  4. try {
  5. constants = enumType.getEnumConstants();
  6. nameStrings = new String[constants.length];
  7. for (int i = 0; i < constants.length; i++) {
  8. T constant = constants[i];
  9. Json annotation = enumType.getField(constant.name()).getAnnotation(Json.class);
  10. String name = annotation != null ? annotation.name() : constant.name();
  11. nameStrings[i] = name;
  12. }
  13. options = JsonReader.Options.of(nameStrings);
  14. } catch (NoSuchFieldException e) {
  15. throw new AssertionError(e);
  16. }
  17. }

代码示例来源:origin: square/moshi

  1. EnumJsonAdapter(Class<T> enumType, @Nullable T fallbackValue, boolean useFallbackValue) {
  2. this.enumType = enumType;
  3. this.fallbackValue = fallbackValue;
  4. this.useFallbackValue = useFallbackValue;
  5. try {
  6. constants = enumType.getEnumConstants();
  7. nameStrings = new String[constants.length];
  8. for (int i = 0; i < constants.length; i++) {
  9. String constantName = constants[i].name();
  10. Json annotation = enumType.getField(constantName).getAnnotation(Json.class);
  11. String name = annotation != null ? annotation.name() : constantName;
  12. nameStrings[i] = name;
  13. }
  14. options = JsonReader.Options.of(nameStrings);
  15. } catch (NoSuchFieldException e) {
  16. throw new AssertionError("Missing field in " + enumType.getName(), e);
  17. }
  18. }

代码示例来源:origin: square/moshi

  1. EnumJsonAdapter(Class<T> enumType) {
  2. this.enumType = enumType;
  3. try {
  4. constants = enumType.getEnumConstants();
  5. nameStrings = new String[constants.length];
  6. for (int i = 0; i < constants.length; i++) {
  7. T constant = constants[i];
  8. Json annotation = enumType.getField(constant.name()).getAnnotation(Json.class);
  9. String name = annotation != null ? annotation.name() : constant.name();
  10. nameStrings[i] = name;
  11. }
  12. options = JsonReader.Options.of(nameStrings);
  13. } catch (NoSuchFieldException e) {
  14. throw new AssertionError("Missing field in " + enumType.getName(), e);
  15. }
  16. }

代码示例来源:origin: square/moshi

  1. /** Creates a field binding for each of declared field of {@code type}. */
  2. private void createFieldBindings(
  3. Moshi moshi, Type type, Map<String, FieldBinding<?>> fieldBindings) {
  4. Class<?> rawType = Types.getRawType(type);
  5. boolean platformType = Util.isPlatformType(rawType);
  6. for (Field field : rawType.getDeclaredFields()) {
  7. if (!includeField(platformType, field.getModifiers())) continue;
  8. // Look up a type adapter for this type.
  9. Type fieldType = resolve(type, rawType, field.getGenericType());
  10. Set<? extends Annotation> annotations = Util.jsonAnnotations(field);
  11. String fieldName = field.getName();
  12. JsonAdapter<Object> adapter = moshi.adapter(fieldType, annotations, fieldName);
  13. // Create the binding between field and JSON.
  14. field.setAccessible(true);
  15. // Store it using the field's name. If there was already a field with this name, fail!
  16. Json jsonAnnotation = field.getAnnotation(Json.class);
  17. String name = jsonAnnotation != null ? jsonAnnotation.name() : fieldName;
  18. FieldBinding<Object> fieldBinding = new FieldBinding<>(name, field, adapter);
  19. FieldBinding<?> replaced = fieldBindings.put(name, fieldBinding);
  20. if (replaced != null) {
  21. throw new IllegalArgumentException("Conflicting fields:\n"
  22. + " " + replaced.field + "\n"
  23. + " " + fieldBinding.field);
  24. }
  25. }
  26. }

代码示例来源:origin: com.squareup.moshi/moshi

  1. EnumJsonAdapter(Class<T> enumType) {
  2. this.enumType = enumType;
  3. try {
  4. constants = enumType.getEnumConstants();
  5. nameStrings = new String[constants.length];
  6. for (int i = 0; i < constants.length; i++) {
  7. T constant = constants[i];
  8. Json annotation = enumType.getField(constant.name()).getAnnotation(Json.class);
  9. String name = annotation != null ? annotation.name() : constant.name();
  10. nameStrings[i] = name;
  11. }
  12. options = JsonReader.Options.of(nameStrings);
  13. } catch (NoSuchFieldException e) {
  14. throw new AssertionError("Missing field in " + enumType.getName(), e);
  15. }
  16. }

代码示例来源:origin: xing/xing-android-sdk

  1. SafeEnumJsonAdapter(Class<T> enumType) {
  2. this.enumType = enumType;
  3. try {
  4. T[] constants = enumType.getEnumConstants();
  5. //noinspection CollectionWithoutInitialCapacity
  6. nameConstantMap = new LinkedHashMap<>();
  7. nameStrings = new String[constants.length];
  8. for (int i = 0, size = constants.length; i < size; i++) {
  9. T constant = constants[i];
  10. Json annotation = enumType.getField(constant.name()).getAnnotation(Json.class);
  11. String name = annotation != null ? annotation.name() : constant.name();
  12. nameConstantMap.put(name, constant);
  13. nameStrings[i] = name;
  14. }
  15. } catch (NoSuchFieldException e) {
  16. throw new AssertionError("Missing field in " + enumType.getName(), e);
  17. }
  18. }

代码示例来源:origin: com.squareup.moshi/moshi-adapters

  1. EnumJsonAdapter(Class<T> enumType, @Nullable T fallbackValue, boolean useFallbackValue) {
  2. this.enumType = enumType;
  3. this.fallbackValue = fallbackValue;
  4. this.useFallbackValue = useFallbackValue;
  5. try {
  6. constants = enumType.getEnumConstants();
  7. nameStrings = new String[constants.length];
  8. for (int i = 0; i < constants.length; i++) {
  9. String constantName = constants[i].name();
  10. Json annotation = enumType.getField(constantName).getAnnotation(Json.class);
  11. String name = annotation != null ? annotation.name() : constantName;
  12. nameStrings[i] = name;
  13. }
  14. options = JsonReader.Options.of(nameStrings);
  15. } catch (NoSuchFieldException e) {
  16. throw new AssertionError("Missing field in " + enumType.getName(), e);
  17. }
  18. }

代码示例来源:origin: serj-lotutovici/moshi-lazy-adapters

  1. FallbackEnumJsonAdapter(Class<T> enumType, String fallback) {
  2. fallbackConstant = Enum.valueOf(enumType, fallback);
  3. this.enumType = enumType;
  4. try {
  5. constants = enumType.getEnumConstants();
  6. nameStrings = new String[constants.length];
  7. for (int i = 0; i < constants.length; i++) {
  8. T constant = constants[i];
  9. Json annotation = enumType.getField(constant.name()).getAnnotation(Json.class);
  10. String name = annotation != null ? annotation.name() : constant.name();
  11. nameStrings[i] = name;
  12. }
  13. options = JsonReader.Options.of(nameStrings);
  14. } catch (NoSuchFieldException e) {
  15. throw new AssertionError(e);
  16. }
  17. }

代码示例来源:origin: com.squareup.moshi/moshi

  1. /** Creates a field binding for each of declared field of {@code type}. */
  2. private void createFieldBindings(
  3. Moshi moshi, Type type, Map<String, FieldBinding<?>> fieldBindings) {
  4. Class<?> rawType = Types.getRawType(type);
  5. boolean platformType = Util.isPlatformType(rawType);
  6. for (Field field : rawType.getDeclaredFields()) {
  7. if (!includeField(platformType, field.getModifiers())) continue;
  8. // Look up a type adapter for this type.
  9. Type fieldType = resolve(type, rawType, field.getGenericType());
  10. Set<? extends Annotation> annotations = Util.jsonAnnotations(field);
  11. String fieldName = field.getName();
  12. JsonAdapter<Object> adapter = moshi.adapter(fieldType, annotations, fieldName);
  13. // Create the binding between field and JSON.
  14. field.setAccessible(true);
  15. // Store it using the field's name. If there was already a field with this name, fail!
  16. Json jsonAnnotation = field.getAnnotation(Json.class);
  17. String name = jsonAnnotation != null ? jsonAnnotation.name() : fieldName;
  18. FieldBinding<Object> fieldBinding = new FieldBinding<>(name, field, adapter);
  19. FieldBinding<?> replaced = fieldBindings.put(name, fieldBinding);
  20. if (replaced != null) {
  21. throw new IllegalArgumentException("Conflicting fields:\n"
  22. + " " + replaced.field + "\n"
  23. + " " + fieldBinding.field);
  24. }
  25. }
  26. }

相关文章