 3 | Method javax.jdo.datastore.Sequence long nextValue() Returns the next sequence value as a long. If the next sequence value is not available or is not numeric, throw JDODataStoreException. Returns: the next value Since: JDO 2.0 |
 3 | Method javax.jdo.spi.StateManager void setLongField( PersistenceCapable pc, int field, long currentValue, long newValue ) Mark the field as modified by the user. Parameters: pc - the calling PersistenceCapable instance field - the field number currentValue - the current value of the field |
 3 | Method javax.persistence.criteria.CriteriaBuilder Expression<Long> sumAsLong( Expression x ) Create an aggregate expression applying the sum operation to an Integer-valued expression, returning a Long result. Parameters: x - expression representing input value to sum operation Returns: sum expression Since: JPA 2.0 |
 3 | Method javax.persistence.criteria.CriteriaBuilder Expression<Long> toLong( Expression number ) Typecast. Returns same expression object. Parameters: number - numeric expression Returns: Expression<Long> Since: JPA 2.0 |
 3 |
@Id private long id;
@OneToMany(mappedBy="document")
private ArrayList readings = new ArrayList();
public long getId() {
return id ... Reading {
// ID is generated by the database
@Id private long id;
private Document |
 3 | UsrlistEntity implements Serializable {
private static final long serialVersionUID = -4472890635861972890L;
private int id;
private int dyId;
private long pwd;
private String ... job;
private String phoneNumber;
private Long contactHash;
private String kadrosu |
 3 | Long id;
private String fileName;
public FileNameDTO(Long id, String fileName) {
this.id = id;
this.fileName = fileName;
}
public Long getId() {
return id;
}
public void setId(Long id) {
this.id = id;
}
public String |
 2 | class OrderDat implements Serializable {
@Id @GeneratedValue private long id ... ;
this.items = items;
}
public long getId() {
return id;
}
public void setId(long id) {
this.id = id |
 2 | ");
em.getTransaction().begin();
Long r = (Long) q.getSingleResult();
em ... COUNT(r) FROM DateTime AS r");
em.getTransaction().begin();
r = (Long) q ... roundDownDateTime(Date dateTime) {
long dateTimeMs = dateTime.getTime();
long |
 2 | = GenerationType.AUTO)
private long id;
@ManyToOne(optional=false)
private ETown town ... Player implements Serializable {
private static final long serialVersionUID = 1L;
@Id
@GeneratedValue
private Long id;
private int permission = 0, activePermission = 0 |