@Retention(value=RUNTIME) @Target(value=FIELD) @Documented public @interface Static
@Table
public class Entity {
// Partition key
@PartitionKey
private Long id;
// Clustering column
@ClusteringColumn
private int date;
// Static column
@Column
@Static
private String staticCol;
}
Copyright © 2012-2021. All Rights Reserved.