A C E F G H I J L M N O P R S T U V

A

Abstractable<T> - Interface in org.jboss.forge.parser.java
 
addAnnotation() - Method in interface org.jboss.forge.parser.java.AnnotationTarget
Add a new annotation instance to this T.
addAnnotation(Class<? extends Annotation>) - Method in interface org.jboss.forge.parser.java.AnnotationTarget
Add a new annotation instance to this T, using the given Class as the annotation type.
addAnnotation(String) - Method in interface org.jboss.forge.parser.java.AnnotationTarget
Add a new annotation instance to this T, using the given String className as the annotation type.
addField() - Method in interface org.jboss.forge.parser.java.FieldHolder
Add a new Java Field to this T instance.
addField(String) - Method in interface org.jboss.forge.parser.java.FieldHolder
Add a new Field declaration to this T instance, using the given String as the declaration.
addImport(String) - Method in interface org.jboss.forge.parser.java.Importer
Add an import by qualified class name.
addImport(Class<?>) - Method in interface org.jboss.forge.parser.java.Importer
Add an import for the given Class type.
addImport(Import) - Method in interface org.jboss.forge.parser.java.Importer
Add an import for the given Import type.
addImport(T) - Method in interface org.jboss.forge.parser.java.Importer
Add an import for the given JavaSource type.
addInterface(String) - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
addInterface(Class<?>) - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
addInterface(JavaInterface) - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
addMethod() - Method in interface org.jboss.forge.parser.java.MethodHolder
Add an uninitialized Method declaration to this T instance.
addMethod(String) - Method in interface org.jboss.forge.parser.java.MethodHolder
Add a new Method declaration to this T instance, using the given String as the method declaration.
addThrows(String) - Method in interface org.jboss.forge.parser.java.Method
Add a thrown Exception to this method's signature.
addThrows(Class<? extends Exception>) - Method in interface org.jboss.forge.parser.java.Method
Add a thrown Exception to this method's signature.
Annotation<O> - Interface in org.jboss.forge.parser.java
 
AnnotationTarget<O,T> - Interface in org.jboss.forge.parser.java
 
areEqual(String, String) - Static method in class org.jboss.forge.parser.java.util.Strings
 
areEqualTrimmed(String, String) - Static method in class org.jboss.forge.parser.java.util.Strings
 
areEquivalent(String, String) - Static method in class org.jboss.forge.parser.java.util.Types
 
Assert - Class in org.jboss.forge.parser.java.util
 
Assert() - Constructor for class org.jboss.forge.parser.java.util.Assert
 

C

capitalize(String) - Static method in class org.jboss.forge.parser.java.util.Strings
Capitalize the given String: "input" -> "Input"
create(Class<T>) - Static method in class org.jboss.forge.parser.JavaParser
Create a new empty JavaClass instance.
create(Class<T>) - Method in interface org.jboss.forge.parser.spi.JavaParserProvider
Create a new empty JavaClass instance.
createGetterAndSetter(JavaClass, Field<JavaClass>) - Static method in class org.jboss.forge.parser.java.util.Refactory
 
createToStringFromFields(JavaClass) - Static method in class org.jboss.forge.parser.java.util.Refactory
 
createToStringFromFields(JavaClass, List<Field<JavaClass>>) - Static method in class org.jboss.forge.parser.java.util.Refactory
 

E

enquote(String) - Static method in class org.jboss.forge.parser.java.util.Strings
 
Extendable<O extends JavaSource<O>> - Interface in org.jboss.forge.parser.java
Represents a JavaSource that can extend other types.

F

Field<O> - Interface in org.jboss.forge.parser.java
 
FieldHolder<T> - Interface in org.jboss.forge.parser.java
 

G

getAnnotation(Class<? extends Annotation>) - Method in interface org.jboss.forge.parser.java.AnnotationTarget
 
getAnnotation(String) - Method in interface org.jboss.forge.parser.java.AnnotationTarget
 
getAnnotations() - Method in interface org.jboss.forge.parser.java.AnnotationTarget
 
getBody() - Method in interface org.jboss.forge.parser.java.Method
Get the inner body of this Method
getDescription() - Method in interface org.jboss.forge.parser.java.SyntaxError
Get a textual description of the type of problem encountered.
getEnumValue(Class<T>) - Method in interface org.jboss.forge.parser.java.Annotation
 
getEnumValue(Class<T>, String) - Method in interface org.jboss.forge.parser.java.Annotation
 
getField(String) - Method in interface org.jboss.forge.parser.java.FieldHolder
Get the Field with the given name and return it, otherwise, return null.
getFields() - Method in interface org.jboss.forge.parser.java.FieldHolder
Get a list of all Fields declared by this T, or return an empty list if no Fields are declared.
getFrom(VisibilityScoped<?>) - Static method in enum org.jboss.forge.parser.java.Visibility
 
getImport(String) - Method in interface org.jboss.forge.parser.java.Importer
Get the Import for the given fully-qualified class name, if it exists; otherwise, return null;
getImport(Class<?>) - Method in interface org.jboss.forge.parser.java.Importer
Get the Import for the given Class type, if it exists; otherwise, return null;
getImport(T) - Method in interface org.jboss.forge.parser.java.Importer
Get the Import for the given T type, if it exists; otherwise, return null;
getImport(Import) - Method in interface org.jboss.forge.parser.java.Importer
Get the Import of the given Import type, if it exists; otherwise, return null;
getImports() - Method in interface org.jboss.forge.parser.java.Importer
Get an immutable list of all Imports currently imported by this O
getInterfaces() - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
getInternal() - Method in interface org.jboss.forge.parser.Internal
Returns the implementation-specific Object representing this.
getLiteralInitializer() - Method in interface org.jboss.forge.parser.java.Field
 
getLiteralValue() - Method in interface org.jboss.forge.parser.java.Annotation
 
getLiteralValue(String) - Method in interface org.jboss.forge.parser.java.Annotation
 
getLiteralValue() - Method in interface org.jboss.forge.parser.java.ValuePair
 
getMembers() - Method in interface org.jboss.forge.parser.java.MemberHolder
Return a list of all class members (fields, methods, etc.)
getMethod(String) - Method in interface org.jboss.forge.parser.java.MethodHolder
Return the Method with the given name and zero parameters; otherwise return null.
getMethod(String, String...) - Method in interface org.jboss.forge.parser.java.MethodHolder
Return the Method with the given name and signature types; otherwise return null.
getMethod(String, Class<?>...) - Method in interface org.jboss.forge.parser.java.MethodHolder
Return the Method with the given name and signature types; otherwise return null.
getMethods() - Method in interface org.jboss.forge.parser.java.MethodHolder
Get a List of all Methods declared by this T instance, if any; otherwise, return an empty List
getName() - Method in interface org.jboss.forge.parser.java.Annotation
 
getName() - Method in interface org.jboss.forge.parser.java.Member
 
getName() - Method in interface org.jboss.forge.parser.java.Named
Get the simple name of this T instance.
getName() - Method in interface org.jboss.forge.parser.java.Parameter
 
getName() - Method in interface org.jboss.forge.parser.java.ValuePair
 
getOrigin() - Method in interface org.jboss.forge.parser.Origin
 
getPackage() - Method in interface org.jboss.forge.parser.java.Import
 
getPackage() - Method in interface org.jboss.forge.parser.java.Packaged
Get the package of this T, or return null if it is in the default package.
getPackage(String) - Static method in class org.jboss.forge.parser.java.util.Types
 
getParameters() - Method in interface org.jboss.forge.parser.java.Method
Get a list of this Method's parameters.
getQualifiedName() - Method in interface org.jboss.forge.parser.java.Import
 
getQualifiedName() - Method in interface org.jboss.forge.parser.java.JavaSource
Set the qualified-name of this T instance, where the qualified-name contains both the Java package and simple class name of the type represented by this T instance.
getReturnType() - Method in interface org.jboss.forge.parser.java.Method
Get the return type of this Method or return null if the return type is void.
getSimpleName() - Method in interface org.jboss.forge.parser.java.Import
 
getSourceType() - Method in interface org.jboss.forge.parser.java.JavaSource
Return the SourceType of this JavaSource instance.
getStringInitializer() - Method in interface org.jboss.forge.parser.java.Field
 
getStringValue() - Method in interface org.jboss.forge.parser.java.Annotation
 
getStringValue(String) - Method in interface org.jboss.forge.parser.java.Annotation
 
getStringValue() - Method in interface org.jboss.forge.parser.java.ValuePair
 
getSuperType() - Method in interface org.jboss.forge.parser.java.Extendable
Get this type's super class.
getSyntaxErrors() - Method in interface org.jboss.forge.parser.java.JavaSource
Get a list of all SyntaxErrors detected in the current T.
getThrownExceptions() - Method in interface org.jboss.forge.parser.java.Method
Get a list of qualified (if possible) Exception class names thrown by this method.
getType() - Method in interface org.jboss.forge.parser.java.Field
 
getType() - Method in interface org.jboss.forge.parser.java.Parameter
 
getValues() - Method in interface org.jboss.forge.parser.java.Annotation
 
getVisibility() - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 

H

hasAnnotation(Class<? extends Annotation>) - Method in interface org.jboss.forge.parser.java.AnnotationTarget
 
hasAnnotation(String) - Method in interface org.jboss.forge.parser.java.AnnotationTarget
 
hasField(String) - Method in interface org.jboss.forge.parser.java.FieldHolder
Return whether or not this T declares a Field with the given name.
hasField(Field<T>) - Method in interface org.jboss.forge.parser.java.FieldHolder
Return whether or not this T declares the given Field instance.
hasImport(Class<?>) - Method in interface org.jboss.forge.parser.java.Importer
Return whether or not this O has an import for the given Class type.
hasImport(String) - Method in interface org.jboss.forge.parser.java.Importer
Return whether or not this O has an import for the given fully-qualified class name.
hasImport(T) - Method in interface org.jboss.forge.parser.java.Importer
Return whether or not this O has an import for the given T type.
hasImport(Import) - Method in interface org.jboss.forge.parser.java.Importer
Return whether or not this O has the given Import type.
hasInterface(String) - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
hasInterface(Class<?>) - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
hasInterface(JavaInterface) - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
hasMethod(Method<T>) - Method in interface org.jboss.forge.parser.java.MethodHolder
Return true if this T has a method with the given name and zero parameters; otherwise return false.
hasMethodSignature(Method<?>) - Method in interface org.jboss.forge.parser.java.MethodHolder
Return true if this T has a method with signature matching the given method's signature.
hasMethodSignature(String) - Method in interface org.jboss.forge.parser.java.MethodHolder
Return true if this T has a method with the given name and zero parameters; otherwise return false.
hasMethodSignature(String, String...) - Method in interface org.jboss.forge.parser.java.MethodHolder
Return true if this T has a method with the given name and signature types; otherwise return false.
hasMethodSignature(String, Class<?>...) - Method in interface org.jboss.forge.parser.java.MethodHolder
Return true if this T has a method with the given name and signature types; otherwise return false.
hasSyntaxErrors() - Method in interface org.jboss.forge.parser.java.JavaSource
Return whether or not this T currently has any SyntaxError s.

I

Import - Interface in org.jboss.forge.parser.java
 
Importer<O extends JavaSource<?>> - Interface in org.jboss.forge.parser.java
 
InterfaceCapable<T extends JavaSource<T>> - Interface in org.jboss.forge.parser.java
 
Internal - Interface in org.jboss.forge.parser
Represents an object that stores implementation-specific data.
isAbstract() - Method in interface org.jboss.forge.parser.java.Abstractable
 
isAnnotation() - Method in interface org.jboss.forge.parser.java.JavaSource
Return true if this JavaSource represents a JavaAnnotation
isClass() - Method in interface org.jboss.forge.parser.java.JavaSource
Return true if this JavaSource represents a JavaClass
isConstructor() - Method in interface org.jboss.forge.parser.java.Method
Return true if this Method is a constructor for the class in which it is defined.
isDefaultPackage() - Method in interface org.jboss.forge.parser.java.Packaged
Return whether or not this T is in the default package.
isEnum() - Method in interface org.jboss.forge.parser.java.JavaSource
Return true if this JavaSource represents a JavaEnum
isFinal() - Method in interface org.jboss.forge.parser.java.Member
 
isInterface() - Method in interface org.jboss.forge.parser.java.JavaSource
Return true if this JavaSource represents a JavaClass interface.
isMarker() - Method in interface org.jboss.forge.parser.java.Annotation
 
isNormal() - Method in interface org.jboss.forge.parser.java.Annotation
 
isNullOrEmpty(String) - Static method in class org.jboss.forge.parser.java.util.Strings
 
isPackagePrivate() - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 
isPrimitive() - Method in interface org.jboss.forge.parser.java.Field
 
isPrivate() - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 
isProtected() - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 
isPublic() - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 
isQualified(String) - Static method in class org.jboss.forge.parser.java.util.Types
 
isReturnTypeVoid() - Method in interface org.jboss.forge.parser.java.Method
Return true if this Method has a return type of 'void'
isSimpleName(String) - Static method in class org.jboss.forge.parser.java.util.Types
 
isSingleValue() - Method in interface org.jboss.forge.parser.java.Annotation
 
isStatic() - Method in interface org.jboss.forge.parser.java.Import
 
isStatic() - Method in interface org.jboss.forge.parser.java.Member
 
isTrue(String) - Static method in class org.jboss.forge.parser.java.util.Strings
 
isType(Class<?>) - Method in interface org.jboss.forge.parser.java.Field
Attempt to determine if this field is of the same type as the given type.
isType(String) - Method in interface org.jboss.forge.parser.java.Field
Attempt to determine if this field is of the same type as the given type.

J

JavaAnnotation - Interface in org.jboss.forge.parser.java
Represents a Java Annotation source file as an in-memory modifiable element.
JavaClass - Interface in org.jboss.forge.parser.java
Represents a Java Class or interface source file as an in-memory modifiable element.
JavaEnum - Interface in org.jboss.forge.parser.java
Represents a Java Enum source file as an in-memory modifiable element.
JavaInterface - Interface in org.jboss.forge.parser.java
 
JavaParser - Class in org.jboss.forge.parser
Responsible for parsing data into new JavaClass instances.
JavaParser() - Constructor for class org.jboss.forge.parser.JavaParser
 
JavaParserProvider - Interface in org.jboss.forge.parser.spi
 
JavaSource<T extends JavaSource<T>> - Interface in org.jboss.forge.parser.java
 
JavaType<T extends JavaSource<T>> - Interface in org.jboss.forge.parser.java
 
join(Collection<?>, String) - Static method in class org.jboss.forge.parser.java.util.Strings
 

L

loader - Static variable in class org.jboss.forge.parser.JavaParser
 

M

Member<O,T> - Interface in org.jboss.forge.parser.java
Represents a JavaClass member.
MemberHolder<O,T> - Interface in org.jboss.forge.parser.java
 
Method<O> - Interface in org.jboss.forge.parser.java
Represents a Java Method.
MethodHolder<T> - Interface in org.jboss.forge.parser.java
 

N

Named<T> - Interface in org.jboss.forge.parser.java
 
notNull(Object, String) - Static method in class org.jboss.forge.parser.java.util.Assert
 

O

org.jboss.forge.parser - package org.jboss.forge.parser
 
org.jboss.forge.parser.java - package org.jboss.forge.parser.java
 
org.jboss.forge.parser.java.util - package org.jboss.forge.parser.java.util
 
org.jboss.forge.parser.spi - package org.jboss.forge.parser.spi
 
Origin<T> - Interface in org.jboss.forge.parser
Represents an object that has a root ancestor that should be made accessible to its clients.

P

Packaged<T> - Interface in org.jboss.forge.parser.java
 
Parameter - Interface in org.jboss.forge.parser.java
 
parse(File) - Static method in class org.jboss.forge.parser.JavaParser
Open the given File, parsing its contents into a new JavaClass instance.
parse(InputStream) - Static method in class org.jboss.forge.parser.JavaParser
Read the given InputStream and parse the data into a new JavaClass instance.
parse(char[]) - Static method in class org.jboss.forge.parser.JavaParser
Parse the given character array into a new JavaClass instance.
parse(String) - Static method in class org.jboss.forge.parser.JavaParser
Parse the given String data into a new JavaClass instance.
parse(Class<T>, File) - Static method in class org.jboss.forge.parser.JavaParser
Read the given File and parse its data into a new JavaSource instance of the given type.
parse(Class<T>, InputStream) - Static method in class org.jboss.forge.parser.JavaParser
Read the given InputStream and parse its data into a new JavaSource instance of the given type.
parse(Class<T>, char[]) - Static method in class org.jboss.forge.parser.JavaParser
Read the given character array and parse its data into a new JavaSource instance of the given type.
parse(Class<T>, String) - Static method in class org.jboss.forge.parser.JavaParser
Read the given string and parse its data into a new JavaSource instance of the given type.
parse(File) - Method in interface org.jboss.forge.parser.spi.JavaParserProvider
Open the given File, parsing its contents into a new JavaSource instance.
parse(InputStream) - Method in interface org.jboss.forge.parser.spi.JavaParserProvider
Read the given InputStream and parse the data into a new JavaSource instance.
parse(char[]) - Method in interface org.jboss.forge.parser.spi.JavaParserProvider
Parse the given character array into a new JavaSource instance.
parse(String) - Method in interface org.jboss.forge.parser.spi.JavaParserProvider
Parse the given String data into a new JavaSource instance.
parse(Class<T>, File) - Method in interface org.jboss.forge.parser.spi.JavaParserProvider
Read the given File and parse its data into a new JavaSource instance of the given type.
parse(Class<T>, InputStream) - Method in interface org.jboss.forge.parser.spi.JavaParserProvider
Read the given InputStream and parse its data into a new JavaSource instance of the given type.
parse(Class<T>, char[]) - Method in interface org.jboss.forge.parser.spi.JavaParserProvider
Read the given character array and parse its data into a new JavaSource instance of the given type.
parse(Class<T>, String) - Method in interface org.jboss.forge.parser.spi.JavaParserProvider
Read the given string and parse its data into a new JavaSource instance of the given type.
ParserException - Exception in org.jboss.forge.parser
 
ParserException() - Constructor for exception org.jboss.forge.parser.ParserException
 
ParserException(String) - Constructor for exception org.jboss.forge.parser.ParserException
 
ParserException(Throwable) - Constructor for exception org.jboss.forge.parser.ParserException
 
ParserException(String, Throwable) - Constructor for exception org.jboss.forge.parser.ParserException
 

R

Refactory - Class in org.jboss.forge.parser.java.util
 
Refactory() - Constructor for class org.jboss.forge.parser.java.util.Refactory
 
removeAllValues() - Method in interface org.jboss.forge.parser.java.Annotation
 
removeAnnotation(Annotation<O>) - Method in interface org.jboss.forge.parser.java.AnnotationTarget
 
removeField(Field<T>) - Method in interface org.jboss.forge.parser.java.FieldHolder
Remove the given Field from this T instance, if it exists; otherwise, do nothing.
removeImport(String) - Method in interface org.jboss.forge.parser.java.Importer
Remove any Import for the given fully-qualified class name, if it exists; otherwise, do nothing;
removeImport(Class<?>) - Method in interface org.jboss.forge.parser.java.Importer
Remove any Import for the given Class type, if it exists; otherwise, do nothing;
removeImport(T) - Method in interface org.jboss.forge.parser.java.Importer
Remove any Import for the given T type, if it exists; otherwise, do nothing;
removeImport(Import) - Method in interface org.jboss.forge.parser.java.Importer
Remove the given Import from this O instance, if it exists; otherwise, do nothing;
removeInterface(String) - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
removeInterface(Class<?>) - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
removeInterface(JavaInterface) - Method in interface org.jboss.forge.parser.java.InterfaceCapable
 
removeMethod(Method<T>) - Method in interface org.jboss.forge.parser.java.MethodHolder
Remove the given Method declaration from this T instance, if it exists; otherwise, do nothing.
removeThrows(String) - Method in interface org.jboss.forge.parser.java.Method
Remove a thrown Exception to this method's signature.
removeThrows(Class<? extends Exception>) - Method in interface org.jboss.forge.parser.java.Method
Remove a thrown Exception to this method's signature.
removeValue(String) - Method in interface org.jboss.forge.parser.java.Annotation
 
requiresImport(Class<?>) - Method in interface org.jboss.forge.parser.java.Importer
Return whether or not this O could accept an import for the given Class type.
requiresImport(String) - Method in interface org.jboss.forge.parser.java.Importer
Return whether or not this O could accept an import for the given fully-qualified class name.

S

scope() - Method in enum org.jboss.forge.parser.java.Visibility
private, public, protected, package private("")
set(T, Visibility) - Static method in enum org.jboss.forge.parser.java.Visibility
 
setAbstract(boolean) - Method in interface org.jboss.forge.parser.java.Abstractable
 
setBody(String) - Method in interface org.jboss.forge.parser.java.Method
Set the inner body of this Method
setConstructor(boolean) - Method in interface org.jboss.forge.parser.java.Method
Toggle this method as a constructor.
setDefaultPackage() - Method in interface org.jboss.forge.parser.java.Packaged
Set this T to be in the default package (removes any current package declaration.)
setEnumValue(String, Enum<?>) - Method in interface org.jboss.forge.parser.java.Annotation
 
setEnumValue(Enum<?>) - Method in interface org.jboss.forge.parser.java.Annotation
 
setFinal(boolean) - Method in interface org.jboss.forge.parser.java.Member
 
setLiteralInitializer(String) - Method in interface org.jboss.forge.parser.java.Field
 
setLiteralValue(String) - Method in interface org.jboss.forge.parser.java.Annotation
 
setLiteralValue(String, String) - Method in interface org.jboss.forge.parser.java.Annotation
 
setName(String) - Method in interface org.jboss.forge.parser.java.Annotation
 
setName(String) - Method in interface org.jboss.forge.parser.java.Field
 
setName(String) - Method in interface org.jboss.forge.parser.java.Import
 
setName(String) - Method in interface org.jboss.forge.parser.java.Method
Set the name of this Method
setName(String) - Method in interface org.jboss.forge.parser.java.Named
Set the simple-name of this T instance.
setPackage(String) - Method in interface org.jboss.forge.parser.java.Packaged
Set this T' package.
setPackagePrivate() - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 
setParameters(String) - Method in interface org.jboss.forge.parser.java.Method
Set this Method's parameters.
setPrivate() - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 
setProtected() - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 
setPublic() - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 
setReturnType(Class<?>) - Method in interface org.jboss.forge.parser.java.Method
Set this Method to return the given type.
setReturnType(String) - Method in interface org.jboss.forge.parser.java.Method
Set this Method to return the given type.
setReturnType(JavaSource<?>) - Method in interface org.jboss.forge.parser.java.Method
Set this Method to return the given JavaSource type.
setReturnTypeVoid() - Method in interface org.jboss.forge.parser.java.Method
Set this Method to return 'void'
setStatic(boolean) - Method in interface org.jboss.forge.parser.java.Import
 
setStatic(boolean) - Method in interface org.jboss.forge.parser.java.Member
 
setStringInitializer(String) - Method in interface org.jboss.forge.parser.java.Field
 
setStringValue(String) - Method in interface org.jboss.forge.parser.java.Annotation
 
setStringValue(String, String) - Method in interface org.jboss.forge.parser.java.Annotation
 
setSuperType(O) - Method in interface org.jboss.forge.parser.java.Extendable
Set this type's super class.
setSuperType(Class<?>) - Method in interface org.jboss.forge.parser.java.Extendable
Set this type's super class.
setSuperType(String) - Method in interface org.jboss.forge.parser.java.Extendable
Set this type's super class.
setType(Class<?>) - Method in interface org.jboss.forge.parser.java.Field
Set the type of this Field to the given Class type.
setType(String) - Method in interface org.jboss.forge.parser.java.Field
Set the type of this Field to the given type.
setType(JavaSource<?>) - Method in interface org.jboss.forge.parser.java.Field
Set the type of this Field to the given JavaSource type.
setVisibility(Visibility) - Method in interface org.jboss.forge.parser.java.VisibilityScoped
 
SourceType - Enum in org.jboss.forge.parser.java
 
Strings - Class in org.jboss.forge.parser.java.util
String utilities.
Strings() - Constructor for class org.jboss.forge.parser.java.util.Strings
 
stripQuotes(String) - Static method in class org.jboss.forge.parser.java.util.Strings
 
SyntaxError - Interface in org.jboss.forge.parser.java
Describes a syntax problem in a JavaClass.

T

tokenizeClassName(String) - Static method in class org.jboss.forge.parser.java.util.Types
 
toSignature() - Method in interface org.jboss.forge.parser.java.Method
Convert this Method into a string representing its unique signature.
toSimpleName(String) - Static method in class org.jboss.forge.parser.java.util.Types
 
toString() - Method in enum org.jboss.forge.parser.java.Visibility
 
Types - Class in org.jboss.forge.parser.java.util
 
Types() - Constructor for class org.jboss.forge.parser.java.util.Types
 

U

unquote(String) - Static method in class org.jboss.forge.parser.java.util.Strings
 

V

valueOf(String) - Static method in enum org.jboss.forge.parser.java.SourceType
Returns the enum constant of this type with the specified name.
valueOf(String) - Static method in enum org.jboss.forge.parser.java.Visibility
Returns the enum constant of this type with the specified name.
ValuePair - Interface in org.jboss.forge.parser.java
 
values() - Static method in enum org.jboss.forge.parser.java.SourceType
Returns an array containing the constants of this enum type, in the order they are declared.
values() - Static method in enum org.jboss.forge.parser.java.Visibility
Returns an array containing the constants of this enum type, in the order they are declared.
Visibility - Enum in org.jboss.forge.parser.java
 
VisibilityScoped<T> - Interface in org.jboss.forge.parser.java
 

A C E F G H I J L M N O P R S T U V

Copyright © 2011 Seam Framework. All Rights Reserved.