Package org.apache.juneau.cp
Class DefaultClassList
java.lang.Object
org.apache.juneau.cp.DefaultClassList
A list of default implementation classes.
 
Notes:
- This class is not thread safe.
See Also:
- 
Constructor SummaryConstructorsModifierConstructorDescriptionprotectedConstructor.DefaultClassList(DefaultClassList value) Copy constructor
- 
Method SummaryModifier and TypeMethodDescriptionPrepends the specified values to the beginning of this list.copy()Creates a copy of this list.static DefaultClassListcreate()Static creator.Returns the first class in this list which is a subclass of (or same as) the specified type.static DefaultClassListStatic creator.
- 
Constructor Details- 
DefaultClassListprotected DefaultClassList()Constructor.
- 
DefaultClassListCopy constructor- Parameters:
- value- The object to copy.
 
 
- 
- 
Method Details- 
createStatic creator.- Returns:
- A new object.
 
- 
ofStatic creator.- Parameters:
- values- Initial entries in this list.
- Returns:
- A new object initialized with the specified values.
 
- 
addPrepends the specified values to the beginning of this list.- Parameters:
- values- The values to prepend to this list.
- Returns:
- This object.
 
- 
getReturns the first class in this list which is a subclass of (or same as) the specified type.- Type Parameters:
- T- The parent type.
- Parameters:
- type- The parent type to check for.
- Returns:
- The first class in this list which is a subclass of the specified type.
 
- 
copyCreates a copy of this list.- Returns:
- A copy of this list.
 
 
-