public class QSYSObjectTypeTable extends Object
For example, to list all possible extended attributes for the "FILE" object type.
String[] extendedAttributes = QSYSObjectTypeTable.getSupportedAttributes("FILE");
for(int i = 0; i < extendedAttributes.length; ++i)
{
System.out.println(QSYSObjectTypeTable.getLocalizedObjectType("FILE", extendedAttributes[i]));
}
Modifier and Type | Method | Description |
---|---|---|
static String |
getLocalizedObjectType(String type) |
Returns a localized description of an object type.
|
static String |
getLocalizedObjectType(String type,
String attribute) |
Returns a localized description of an object type.
|
static String[] |
getSupportedAttributes(String type) |
Returns a list of the supported extended attributes for an object type.
|
static String[] |
getSupportedObjectTypes() |
Returns a list of the supported object types.
|
public static String getLocalizedObjectType(String type)
type
- The object type.public static String getLocalizedObjectType(String type, String attribute)
type
- The object type.attribute
- The extended attribute, or null if none.public static String[] getSupportedAttributes(String type)
type
- The object type.public static String[] getSupportedObjectTypes()
Copyright © 2024. All rights reserved.