-
Notifications
You must be signed in to change notification settings - Fork 2k
Expand file tree
/
Copy pathFetchGroup.java
More file actions
31 lines (28 loc) · 904 Bytes
/
FetchGroup.java
File metadata and controls
31 lines (28 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
// Generated automatically from javax.jdo.FetchGroup for testing purposes
package javax.jdo;
import java.util.Set;
public interface FetchGroup
{
Class getType();
FetchGroup addCategory(String p0);
FetchGroup addMember(String p0);
FetchGroup addMembers(String... p0);
FetchGroup removeCategory(String p0);
FetchGroup removeMember(String p0);
FetchGroup removeMembers(String... p0);
FetchGroup setPostLoad(boolean p0);
FetchGroup setRecursionDepth(String p0, int p1);
FetchGroup setUnmodifiable();
Set getMembers();
String getName();
boolean equals(Object p0);
boolean getPostLoad();
boolean isUnmodifiable();
int getRecursionDepth(String p0);
int hashCode();
static String ALL = null;
static String BASIC = null;
static String DEFAULT = null;
static String MULTIVALUED = null;
static String RELATIONSHIP = null;
}