`
朱秋旭
  • 浏览: 231054 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

Lombok 之 Data & Value

阅读更多

LomBok 的相关目录已经整理出来,希望大家可以根据需求自助学习,好工具要大家分享:

@Cleanup     

@Getter, @Setter

@ToString

@EqualsAndHashCode

@Constructor

@Data & @Value

@SneakyThrows

@Synchronized

@Getter(lazy=true)

@Log

先说@Data , 作为之前介绍几个annotation的一个统称,可谓整理了方便,@Data直接修饰POJO or beans, getter所有的变量,setter所有不为final的变量。如果你不需要默认的生成方式,直接填写你需要的annotation的就可以了。默认生成的所有的annotation都是public的,如果需要不同权限修饰符可以使用AccessLevel.NONE选项。当然@Data 也可以使用staticConstructor选项生成一个静态方法。
使用Data annotation可以简便的完成自己想要的内容:
import lombok.AccessLevel;
import lombok.Setter;
import lombok.Data;
import lombok.ToString;

@Data public class DataExample {
  private final String name;
  @Setter(AccessLevel.PACKAGE) private int age;
  private double score;
  private String[] tags;
  
  @ToString(includeFieldNames=true)
  @Data(staticConstructor="of")
  public static class Exercise<T> {
    private final String name;
    private final T value;
  }
}
 
使用后:
import java.util.Arrays;

public class DataExample {
  private final String name;
  private int age;
  private double score;
  private String[] tags;
  
  public DataExample(String name) {
    this.name = name;
  }
  
  public String getName() {
    return this.name;
  }
  
  void setAge(int age) {
    this.age = age;
  }
  
  public int getAge() {
    return this.age;
  }
  
  public void setScore(double score) {
    this.score = score;
  }
  
  public double getScore() {
    return this.score;
  }
  
  public String[] getTags() {
    return this.tags;
  }
  
  public void setTags(String[] tags) {
    this.tags = tags;
  }
  
  @Override public String toString() {
    return "DataExample(" + this.getName() + ", " + this.getAge() + ", " + this.getScore() + ", " + Arrays.deepToString(this.getTags()) + ")";
  }
  
  protected boolean canEqual(Object other) {
    return other instanceof DataExample;
  }
  
  @Override public boolean equals(Object o) {
    if (o == this) return true;
    if (!(o instanceof DataExample)) return false;
    DataExample other = (DataExample) o;
    if (!other.canEqual((Object)this)) return false;
    if (this.getName() == null ? other.getName() != null : !this.getName().equals(other.getName())) return false;
    if (this.getAge() != other.getAge()) return false;
    if (Double.compare(this.getScore(), other.getScore()) != 0) return false;
    if (!Arrays.deepEquals(this.getTags(), other.getTags())) return false;
    return true;
  }
  
  @Override public int hashCode() {
    final int PRIME = 59;
    int result = 1;
    final long temp1 = Double.doubleToLongBits(this.getScore());
    result = (result*PRIME) + (this.getName() == null ? 0 : this.getName().hashCode());
    result = (result*PRIME) + this.getAge();
    result = (result*PRIME) + (int)(temp1 ^ (temp1 >>> 32));
    result = (result*PRIME) + Arrays.deepHashCode(this.getTags());
    return result;
  }
  
  public static class Exercise<T> {
    private final String name;
    private final T value;
    
    private Exercise(String name, T value) {
      this.name = name;
      this.value = value;
    }
    
    public static <T> Exercise<T> of(String name, T value) {
      return new Exercise<T>(name, value);
    }
    
    public String getName() {
      return this.name;
    }
    
    public T getValue() {
      return this.value;
    }
    
    @Override public String toString() {
      return "Exercise(name=" + this.getName() + ", value=" + this.getValue() + ")";
    }
    
    protected boolean canEqual(Object other) {
      return other instanceof Exercise;
    }
    
    @Override public boolean equals(Object o) {
      if (o == this) return true;
      if (!(o instanceof Exercise)) return false;
      Exercise<?> other = (Exercise<?>) o;
      if (!other.canEqual((Object)this)) return false;
      if (this.getName() == null ? other.getValue() != null : !this.getName().equals(other.getName())) return false;
      if (this.getValue() == null ? other.getValue() != null : !this.getValue().equals(other.getValue())) return false;
      return true;
    }
    
    @Override public int hashCode() {
      final int PRIME = 59;
      int result = 1;
      result = (result*PRIME) + (this.getName() == null ? 0 : this.getName().hashCode());
      result = (result*PRIME) + (this.getValue() == null ? 0 : this.getValue().hashCode());
      return result;
    }
  }
}
 与@Data相对应的@Value, 两个annotation的主要区别就是如果变量不加@NonFinal ,@Value会给所有的弄成final的。当然如果是final的话,就没有set方法了。
import lombok.AccessLevel;
import lombok.experimental.NonFinal;
import lombok.experimental.Value;
import lombok.experimental.Wither;
import lombok.ToString;

@Value public class ValueExample {
  String name;
  @Wither(AccessLevel.PACKAGE) @NonFinal int age;
  double score;
  protected String[] tags;
  
  @ToString(includeFieldNames=true)
  @Value(staticConstructor="of")
  public static class Exercise<T> {
    String name;
    T value;
  }
}
使用后:
import java.util.Arrays;

public final class ValueExample {
  private final String name;
  private int age;
  private final double score;
  protected final String[] tags;
  
  @java.beans.ConstructorProperties({"name", "age", "score", "tags"})
  public ValueExample(String name, int age, double score, String[] tags) {
    this.name = name;
    this.age = age;
    this.score = score;
    this.tags = tags;
  }
  
  public String getName() {
    return this.name;
  }
  
  public int getAge() {
    return this.age;
  }
  
  public double getScore() {
    return this.score;
  }
  
  public String[] getTags() {
    return this.tags;
  }
  
  @java.lang.Override
  public boolean equals(Object o) {
    if (o == this) return true;
    if (!(o instanceof ValueExample)) return false;
    final ValueExample other = (ValueExample)o;
    final Object this$name = this.getName();
    final Object other$name = other.getName();
    if (this$name == null ? other$name != null : !this$name.equals(other$name)) return false;
    if (this.getAge() != other.getAge()) return false;
    if (Double.compare(this.getScore(), other.getScore()) != 0) return false;
    if (!Arrays.deepEquals(this.getTags(), other.getTags())) return false;
    return true;
  }
  
  @java.lang.Override
  public int hashCode() {
    final int PRIME = 59;
    int result = 1;
    final Object $name = this.getName();
    result = result * PRIME + ($name == null ? 0 : $name.hashCode());
    result = result * PRIME + this.getAge();
    final long $score = Double.doubleToLongBits(this.getScore());
    result = result * PRIME + (int)($score >>> 32 ^ $score);
    result = result * PRIME + Arrays.deepHashCode(this.getTags());
    return result;
  }
  
  @java.lang.Override
  public String toString() {
    return "ValueExample(name=" + getName() + ", age=" + getAge() + ", score=" + getScore() + ", tags=" + Arrays.deepToString(getTags()) + ")";
  }
  
  ValueExample withAge(int age) {
    return this.age == age ? this : new ValueExample(name, age, score, tags);
  }
  
  public static final class Exercise<T> {
    private final String name;
    private final T value;
    
    private Exercise(String name, T value) {
      this.name = name;
      this.value = value;
    }
    
    public static <T> Exercise<T> of(String name, T value) {
      return new Exercise<T>(name, value);
    }
    
    public String getName() {
      return this.name;
    }
    
    public T getValue() {
      return this.value;
    }
    
    @java.lang.Override
    public boolean equals(Object o) {
      if (o == this) return true;
      if (!(o instanceof ValueExample.Exercise)) return false;
      final Exercise<?> other = (Exercise<?>)o;
      final Object this$name = this.getName();
      final Object other$name = other.getName();
      if (this$name == null ? other$name != null : !this$name.equals(other$name)) return false;
      final Object this$value = this.getValue();
      final Object other$value = other.getValue();
      if (this$value == null ? other$value != null : !this$value.equals(other$value)) return false;
      return true;
    }
    
    @java.lang.Override
    public int hashCode() {
      final int PRIME = 59;
      int result = 1;
      final Object $name = this.getName();
      result = result * PRIME + ($name == null ? 0 : $name.hashCode());
      final Object $value = this.getValue();
      result = result * PRIME + ($value == null ? 0 : $value.hashCode());
      return result;
    }
    
    @java.lang.Override
    public String toString() {
      return "ValueExample.Exercise(name=" + getName() + ", value=" + getValue() + ")";
    }
  }
}
 
 
 
 
分享到:
评论

相关推荐

    Lombok安装及使用

    11. **@Value**:类似于@Data,但生成的类为final,字段为private且不可变,没有setter,适用于不可变对象。 12. **@NonNull**:表示字段不允许为null,可用于校验输入。 请注意,虽然Lombok极大地简化了代码,但...

    lombok.zip

    - `@Value`:与@Data类似,但生成的类是final的,字段也是private且final,适合创建不可变对象。 - `@Accessors`:控制getter和setter的生成方式,例如链式调用。 - `@Wither`:为每个字段生成一个with前缀的方法...

    java lombok.rar

    - `@Value`:与@Data类似,但生成的类是不可变的,所有字段默认为private final,并生成构造函数。 - `@Accessors`:控制getter和setter的生成方式,如链式调用或字段名前缀。 6. **预定义的枚举操作**: - `@...

    eclipse插件 lombok.jar

    如果一个类使用了 `@Data`,那么默认所有字段都是可变的,如果需要创建不可变对象,可以使用 `@Value` 注解。 - 配合使用 `@Builder` 和 `@AllArgsConstructor` 可以构建更方便的对象构造方式。 总之,Lombok 是一...

    Lombok官网插件

    此外,该插件还提供了对其他Lombok扩展功能的支持,如`@Accessors`、`@Wither`和`@Value`等。 总的来说,Lombok通过减少样板代码,提高了Java代码的可读性和简洁性,同时Lombok插件确保了在IDE中能顺利地使用这些...

    lombok-plugin-0.29-2019.2.zip

    8. `@Value`:与 `@Data` 类似,但创建的是不可变对象,且默认为 final。 安装 Lombok 插件后,IDE 将能够理解并正确处理这些注解,例如在代码提示、自动完成和重构中。在 IntelliJ IDEA 中,你可以通过导入 ...

    lombok-plugin-0.16-2017.1.5

    10. `@Value`: 创建一个不可变的类,相当于 `@Data` + `final` + `@AllArgsConstructor` + `@EqualsAndHashCode` + `@ToString` 的组合,适用于创建不可变数据对象。 Lombok 插件的安装和配置对于充分利用这些注解...

    Lombok快速入门及使用详情

    Lombok 快速入门及使用详情 Lombok 是一个 Java 库,可以自动生成 Java 类的 getter、setter、构造器、toString 方法等,减少开发者的工作量。下面我们将详细介绍 Lombok 的使用详情。 1. 安装 IDEA Lombok 插件 ...

    lombok-1.18.8lhr.zip

    1. `@Data`: 这是Lombok最常用的注解之一,它会为一个类自动生成所有的getter和setter,同时包括构造函数、equals()、hashCode()和toString()方法。 2. `@AllArgsConstructor`和`@NoArgsConstructor`: 分别生成包含...

    lombok.jar 下载

    例如,`@Data`注解可以自动为所有非静态字段生成getter和setter;`@AllArgsConstructor`和`@NoArgsConstructor`分别用于生成包含所有字段和无参的构造函数。 2. **消除冗余:** 使用Lombok,开发者不再需要手动编写...

    lombok.jar

    1. `@Data`:这是Lombok最常用的注解之一,它可以为一个类生成全属性的getter和setter,同时包含构造函数、equals()、hashCode()和toString()方法。 2. `@NonNull`:用于指定字段不允许为null,Lombok会自动生成...

    Lombok使用讲解及原理1

    `@Value` 注解与 `@Data` 类似,但生成的类是不可变的,所有的字段默认为 final,且只提供 getter 而无 setter。 `@Builder` 注解允许你创建复杂的构建器模式,简化创建对象的过程,支持链式调用。`@SneakyThrows` ...

    东Lombok:东Lombok项目

    Lombok的@Data注解可以在一个类上使用,自动为所有非静态、非final的字段生成getter和setter方法,以及equals()、hashCode()和toString()方法。这样,我们就可以避免在每个实体类中手动编写这些代码,提高编码效率...

    通过Lombok来简化你的代码1

    9. @Value:用在类上,是@Data的不可变形式,相当于为属性添加final声明,只提供getter方法,而不提供setter方法。 10. @Builder:用在类、构造器、方法上,为你提供复杂的builder APIs,让你可以像如下方式一样...

    lombok应用的示例代码

    本资源包含了lombok常见的注解使用方法,包括@Getter、@Setter、@NoArgsConstructor、@AllArgsConstructor、@RequiredArgsConstructor、@Builder、@Data、@Value、@Slf4j、@Cleanup等注解,可以大大减少代码的书写,...

    详解Lombok快速上手(安装、使用与注解参数)

    private final T value; } ``` 使用 `@Data` 注解可以自动生成 getter、setter、toString、equals 和 hashCode 等方法。 五、结论 Lombok 是一个非常实用的 Java 库,可以帮助开发者减少样板代码,提高开发效率...

    Java编码辅助工具Lombok用法详解

    * @Value:将字段都变成不可变类型,使用final修饰, 同时还包含@ToString、@EqualsAndHashCode、@AllArgsConstruc。 Lombok的优势 使用Lombok可以带来以下几个优势: * 减少非核心代码的臃肿 * 提高编码效率 * ...

Global site tag (gtag.js) - Google Analytics