Uses of Class
com.dxfeed.ipf.InstrumentProfile

Packages that use InstrumentProfile
com.dxfeed.ipf   
com.dxfeed.ipf.services   
com.dxfeed.ipf.tools   
com.dxfeed.ipf.transform   
com.dxfeed.schedule   
 

Uses of InstrumentProfile in com.dxfeed.ipf
 

Methods in com.dxfeed.ipf that return types with arguments of type InstrumentProfile
 java.util.List<InstrumentProfile> InstrumentProfileReader.read(java.io.InputStream in)
          Reads and returns instrument profiles from specified stream.
 java.util.List<InstrumentProfile> InstrumentProfileReader.read(java.io.InputStream in, java.lang.String name)
          Reads and returns instrument profiles from specified stream using specified name to select data compression format.
 java.util.List<InstrumentProfile> InstrumentProfileReader.readFromFile(java.lang.String source)
          Reads and returns instrument profiles from specified file.
 

Methods in com.dxfeed.ipf with parameters of type InstrumentProfile
 int InstrumentProfile.compareTo(InstrumentProfile ip)
          Compares this profile with the specified profile for order.
 java.lang.String InstrumentProfileField.getField(InstrumentProfile ip)
          Returns value of this field for specified profile in textual representation.
 double InstrumentProfileField.getNumericField(InstrumentProfile ip)
          Returns value of this field for specified profile in numeric representation.
 void InstrumentProfileField.setField(InstrumentProfile ip, java.lang.String value)
          Sets value of this field (in textual representation) to specified profile.
 void InstrumentProfileField.setNumericField(InstrumentProfile ip, double value)
          Sets value of this field (in numeric representation) to specified profile.
 

Method parameters in com.dxfeed.ipf with type arguments of type InstrumentProfile
 void InstrumentProfileWriter.write(java.io.OutputStream out, java.util.List<InstrumentProfile> profiles)
          Writes specified instrument profiles into specified stream.
 void InstrumentProfileWriter.write(java.io.OutputStream out, java.lang.String name, java.util.List<InstrumentProfile> profiles)
          Writes specified instrument profiles into specified stream using specified name to select data compression format.
 void InstrumentProfileWriter.writeToFile(java.lang.String file, java.util.List<InstrumentProfile> profiles)
          Writes specified instrument profiles into specified file.
 

Constructors in com.dxfeed.ipf with parameters of type InstrumentProfile
InstrumentProfile(InstrumentProfile ip)
           
 

Uses of InstrumentProfile in com.dxfeed.ipf.services
 

Methods in com.dxfeed.ipf.services that return types with arguments of type InstrumentProfile
 java.util.List<InstrumentProfile> InstrumentProfileProvider.getInstrumentProfiles()
          Provides list of InstrumentProfile for publishing by InstrumentProfileService.
 

Uses of InstrumentProfile in com.dxfeed.ipf.tools
 

Methods in com.dxfeed.ipf.tools that return types with arguments of type InstrumentProfile
 java.util.List<InstrumentProfile> OCCParser.read(java.io.InputStream in)
          Reads and returns instrument profiles from specified stream.
 java.util.List<InstrumentProfile> CMEParser.read(java.io.InputStream in)
          Reads and returns instrument profiles from specified stream.
 

Uses of InstrumentProfile in com.dxfeed.ipf.transform
 

Methods in com.dxfeed.ipf.transform that return types with arguments of type InstrumentProfile
 java.util.List<InstrumentProfile> InstrumentProfileTransform.transform(java.util.List<InstrumentProfile> profiles)
          Executes compiled transform on specified instrument profiles and returns transformed profiles.
 

Method parameters in com.dxfeed.ipf.transform with type arguments of type InstrumentProfile
 java.util.List<InstrumentProfile> InstrumentProfileTransform.transform(java.util.List<InstrumentProfile> profiles)
          Executes compiled transform on specified instrument profiles and returns transformed profiles.
 

Uses of InstrumentProfile in com.dxfeed.schedule
 

Methods in com.dxfeed.schedule with parameters of type InstrumentProfile
static Schedule Schedule.getInstance(InstrumentProfile profile)
          Returns default schedule instance for specified instrument profile.
static Schedule Schedule.getInstance(InstrumentProfile profile, java.lang.String venue)
          Returns schedule instance for specified instrument profile and trading venue.
static java.util.List<java.lang.String> Schedule.getTradingVenues(InstrumentProfile profile)
          Returns trading venues for specified instrument profile.