程序包 org.osgi.dto
类 DTO
- java.lang.Object
-
- org.osgi.dto.DTO
-
- 直接已知子类:
BundleDTO,BundleStartLevelDTO,BundleWiringDTO,CapabilityDTO,CapabilityRefDTO,FrameworkDTO,FrameworkStartLevelDTO,RequirementDTO,RequirementRefDTO,ResourceDTO,ServiceReferenceDTO,WireDTO,WiringDTO
public abstract class DTO extends java.lang.ObjectSuper type for Data Transfer Objects.A Data Transfer Object (DTO) is easily serializable having only public fields of primitive types and their wrapper classes, Strings, and DTOs. List, Set, Map and array aggregates may also be used. The aggregates must only hold objects of the listed types or aggregates.
The object graph from a Data Transfer Object must be a tree to simplify serialization and deserialization.
- 作者:
- $Id: DTO.java 1614569 2014-07-30 07:22:32Z cziegeler $
-
-
方法详细资料
-
toString
public java.lang.String toString()
Return a string representation of this DTO suitable for use when debugging.The format of the string representation is not specified and subject to change.
- 覆盖:
toString在类中java.lang.Object- 返回:
- A string representation of this DTO suitable for use when debugging.
-
-