Uses of Class
com.stimulsoft.base.json.JSONException
Packages that use JSONException
Package
Description
-
Uses of JSONException in com.stimulsoft.base
Methods in com.stimulsoft.base that throw JSONExceptionModifier and TypeMethodDescriptionstatic Boolean[]StiJsonReportObjectHelper.Deserialize.boolArray(JSONObject jObject) static JSONObjectStiJsonReportObjectHelper.Deserialize.boolList(JSONObject jObject) static JSONObjectstatic StiBorderstatic StiBrushstatic JSONObjectStiJsonReportObjectHelper.Serialize.colorArray(StiColor[] array) static StiColor[]StiJsonReportObjectHelper.Deserialize.ColorArray(JSONObject jObject) static StiDateTimestatic StiFontstatic Integer[]StiJsonReportObjectHelper.Deserialize.intArray(JSONObject jObject) static JSONObjectStiJsonReportObjectHelper.Serialize.IntArray(int[] array) static JSONObjectStiJsonReportObjectHelper.Deserialize.IntArrayList(JSONObject jObject) voidIStiJsonReportObject.LoadFromJsonObject(JSONObject jObject) voidStiAppExpression.LoadFromJsonObject(JSONObject jObject) voidStiAppExpressionCollection.LoadFromJsonObject(JSONObject jObject) static JSONObjectstatic StiPointStiJsonReportObjectHelper.Deserialize.Point(JSONObject jObject) static JSONObjectstatic StiPointStiJsonReportObjectHelper.Deserialize.PointF(JSONObject jObject) static StiRectangleStiJsonReportObjectHelper.Deserialize.RectangleD(JProperty prop) IStiJsonReportObject.SaveToJsonObject(StiJsonSaveMode Mode) StiAppExpression.SaveToJsonObject(StiJsonSaveMode mode) StiAppExpressionCollection.SaveToJsonObject(StiJsonSaveMode mode) static JSONObjectstatic StiSizestatic String[]StiJsonReportObjectHelper.Deserialize.stringArray(JSONObject jObject) static JSONObjectStiJsonReportObjectHelper.Serialize.StringArray(String[] array) static JSONObjectStiJsonReportObjectHelper.Serialize.StringArray(List<String> array) StiJsonReportObjectHelper.Deserialize.stringList(JSONObject jObject) -
Uses of JSONException in com.stimulsoft.base.drawing
Methods in com.stimulsoft.base.drawing that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiBorder.LoadFromJson(JSONObject jObject) static StiBrushStiBrush.LoadFromJson(JSONObject jObject) voidStiTextOptions.LoadFromJsonObject(JSONObject jObject) voidStiGlareBrush.LoadValuesFromJson(JSONObject jObject) voidStiGlassBrush.LoadValuesFromJson(JSONObject jObject) voidStiGradientBrush.LoadValuesFromJson(JSONObject jObject) voidStiHatchBrush.LoadValuesFromJson(JSONObject jObject) voidStiLinearGradientBrush.LoadValuesFromJson(JSONObject jObject) voidStiSolidBrush.LoadValuesFromJson(JSONObject jObject) StiTextOptions.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.base.json
Methods in com.stimulsoft.base.json that return JSONExceptionModifier and TypeMethodDescriptionJSONTokener.syntaxError(String message) Make a JSONException to signal a syntax error.Methods in com.stimulsoft.base.json that throw JSONExceptionModifier and TypeMethodDescriptionJSONObject.accumulate(String key, Object value) Accumulate values under a key.voidJSONObject.Add(String key, Collection<?> value) voidJSONObject.AddPropertyBool(String key, boolean value) voidJSONObject.AddPropertyBool(String key, boolean value, boolean defaultValue) voidJSONObject.AddPropertyBorder(String key, StiBorder border) voidJSONObject.AddPropertyBrush(String key, StiBrush brush) voidJSONObject.AddPropertyDateTime(String key, ZonedDateTime value) voidJSONObject.AddPropertyDateTime(String key, Calendar value) voidJSONObject.AddPropertyDouble(String propertyName, double value) voidJSONObject.AddPropertyDouble(String propertyName, double value, double defaultValue) voidJSONObject.AddPropertyEnum(String key, StiEnumSet<?> value, IStiEnum defaultValue) voidJSONObject.AddPropertyEnum(String key, Enum<?> value) voidJSONObject.AddPropertyEnum(String key, Enum<?> value, Enum<?> defaultValue) voidJSONObject.AddPropertyFloat(String propertyName, double value, double defaultValue) voidJSONObject.AddPropertyFloatNullable(String propertyName, double value, Double defaultValue) voidJSONObject.AddPropertyIdent(String key, String value) voidJSONObject.AddPropertyInt(String key, int value) voidJSONObject.AddPropertyInt(String key, int value, int defaultValue) voidJSONObject.AddPropertyIntNoDefaultValue(String propertyName, Integer value) voidJSONObject.AddPropertyJObject(String key, JSONObject value) voidJSONObject.AddPropertyLong(String key, long value, long defaultValue) voidJSONObject.AddPropertyString(String propertyName, String value) voidJSONObject.AddPropertyString(String propertyName, String value, String defaultValue) voidJSONObject.AddPropertyStringIfNotNull(String key, String value) voidJSONObject.AddPropertyStringNullOfEmpty(String key, String value) voidJSONObject.AddPropertyStringNullOrEmpty(String key, String value) Append values to the array under a key.JSONWriter.array()Begin appending a new array.JSONWriter.endArray()End an array.JSONWriter.endObject()End an object.JSONArray.get(int index) Get the object value associated with an index.Get the value object associated with a key.booleanJSONArray.getBoolean(int index) Get the boolean value associated with an index.booleanJSONObject.getBoolean(String key) Get the boolean value associated with a key.doubleJSONArray.getDouble(int index) Get the double value associated with an index.doubleGet the double value associated with a key.intJSONArray.getInt(int index) Get the int value associated with an index.intGet the int value associated with a key.JSONArray.getJSONArray(int index) Get the JSONArray associated with an index.JSONObject.getJSONArray(String key) Get the JSONArray value associated with a key.JSONArray.getJSONObject(int index) Get the JSONObject associated with an index.JSONObject.getJSONObject(String key) Get the JSONObject value associated with a key.longJSONArray.getLong(int index) Get the long value associated with an index.longGet the long value associated with a key.JSONArray.getString(int index) Get the string associated with an index.Get the string associated with a key.Make a string from the contents of this JSONArray.Append a key.charJSONTokener.next(char c) Consume the next character, and check that it matches a specified character.JSONTokener.next(int n) Get the next n characters.XMLTokener.nextCDATA()Get the text in the CDATA block.charJSONTokener.nextClean()Get the next char in the string, skipping whitespace and comments (slashslash, slashstar, and hash).XMLTokener.nextContent()Get the next XML outer token, trimming whitespace.XMLTokener.nextEntity(char a) Return the next entity.XMLTokener.nextMeta()Returns the next XML meta token.JSONTokener.nextString(char quote) Return the characters up to the next close quote character.HTTPTokener.nextToken()Get the next token or string.XMLTokener.nextToken()Get the next XML Token.JSONTokener.nextValue()Get the next value.static StringJSONObject.numberToString(Number n) Produce a string from a Number.JSONWriter.object()Begin appending a new object.JSONObject.Properties()JSONArray.put(double value) Append a double value.JSONArray.put(int index, boolean value) Put or replace a boolean value in the JSONArray.JSONArray.put(int index, double value) Put or replace a double value.JSONArray.put(int index, int value) Put or replace an int value.JSONArray.put(int index, long value) Put or replace a long value.Put or replace an object value in the JSONArray.JSONArray.put(int index, Collection value) Put a value in the JSONArray, where the value will be a JSONArray which is produced from a Collection.Put a value in the JSONArray, where the value will be a JSONObject which is produced from a Map.Put a key/boolean pair in the JSONObject.Put a key/double pair in the JSONObject.Put a key/int pair in the JSONObject.Put a key/long pair in the JSONObject.Put a key/value pair in the JSONObject.JSONObject.put(String key, Collection value) Put a key/value pair in the JSONObject, where the value will be a JSONArray which is produced from a Collection.Put a key/value pair in the JSONObject, where the value will be a JSONObject which is produced from a Map.voidJSONObject.putNullOfEmpty(String propertyName, Object value) Put a key/value pair in the JSONObject, but only if the key and the value are both non-null.static JSONArrayCDL.rowToJSONArray(JSONTokener x) Produce a JSONArray of strings from a row of comma delimited values.static JSONObjectCDL.rowToJSONObject(JSONArray names, JSONTokener x) Produce a JSONObject from a row of comma delimited text, using a parallel JSONArray of strings to provides the names of the elements.static JSONArrayCDL.toJSONArray(JSONArray names, JSONTokener x) Produce a JSONArray of JSONObjects from a comma delimited text string using a supplied JSONArray as the source of element names.static JSONArrayCDL.toJSONArray(JSONArray names, String string) Produce a JSONArray of JSONObjects from a comma delimited text string using a supplied JSONArray as the source of element names.static JSONArrayCDL.toJSONArray(JSONTokener x) Produce a JSONArray of JSONObjects from a comma delimited text string, using the first row as a source of names.static JSONArrayCDL.toJSONArray(String string) Produce a JSONArray of JSONObjects from a comma delimited text string, using the first row as a source of names.JSONObject.toJSONArray(JSONArray names) Produce a JSONArray containing the values of the members of this JSONObject.static JSONObjectCookie.toJSONObject(String string) Convert a cookie specification string into a JSONObject.static JSONObjectCookieList.toJSONObject(String string) Convert a cookie list into a JSONObject.static JSONObjectHTTP.toJSONObject(String string) Convert an HTTP header string into a JSONObject.JSONArray.toJSONObject(JSONArray names) Produce a JSONObject by combining a JSONArray of names with the values of this JSONArray.static JSONObjectXML.toJSONObject(String string) Convert a well-formed (but not necessarily valid) XML string into a JSONObject.static StringProduce a comma delimited text from a JSONArray of JSONObjects.static StringProduce a comma delimited text from a JSONArray of JSONObjects using a provided list of names.static StringCookie.toString(JSONObject o) Convert a JSONObject into a cookie specification string.static StringCookieList.toString(JSONObject o) Convert a JSONObject into a cookie list.static StringHTTP.toString(JSONObject o) Convert a JSONObject into an HTTP header.JSONArray.toString(int indentFactor) Make a prettyprinted JSON text of this JSONArray.JSONObject.toString(int indentFactor) Make a prettyprinted JSON text of this JSONObject.static StringConvert a JSONObject into a well-formed, element-normal XML string.static StringConvert a JSONObject into a well-formed, element-normal XML string.JSONWriter.value(boolean b) Append either the valuetrueor the valuefalse.JSONWriter.value(double d) Append a double value.JSONWriter.value(long l) Append a long value.Append an object value.Write the contents of the JSONArray as JSON text to a writer.Write the contents of the JSONObject as JSON text to a writer.Constructors in com.stimulsoft.base.json that throw JSONExceptionModifierConstructorDescriptionConstruct a JSONArray from a JSONTokener.Construct a JSONArray from an arrayConstruct a JSONArray from a source JSON text.JSONObject(JSONObject jo, String[] names) Construct a JSONObject from a subset of another JSONObject.Construct a JSONObject from a JSONTokener.JSONObject(String source) Construct a JSONObject from a source JSON text string. -
Uses of JSONException in com.stimulsoft.base.licenses
Methods in com.stimulsoft.base.licenses that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiLicenseObject.decryptFromBytes(byte[] bytes) voidStiLicenseObject.decryptFromString(String str) byte[]StiLicenseObject.encryptToBytes()StiLicenseObject.encryptToString()static StiLicenseActivationRequestStiLicenseActivationRequest.get(byte[] bytes) static StiLicenseActivationRequeststatic StiLicenseActivationResponseStiLicenseActivationResponse.get(byte[] bytes) static StiLicenseActivationResponsebyte[]StiLicenseKey.getCheckBytes()byte[]StiTrialLicenseKey.getCheckBytes()StiLicenseKey.getCSharpCode()voidStiLicenseKey.LoadFromJsonObject(JSONObject jObject) voidStiLicenseProduct.LoadFromJsonObject(JSONObject jObject) voidStiLicenseKey.loadFromString(String str) voidStiLicenseObject.loadFromString(String str) voidStiTrialLicenseKey.loadFromString(String str) byte[]StiLicenseObject.saveToBytes()StiLicenseKey.SaveToJsonObject(StiJsonSaveMode mode) StiLicenseProduct.SaveToJsonObject(StiJsonSaveMode mode) StiLicenseKey.saveToString()StiLicenseObject.saveToString()StiTrialLicenseKey.saveToString()StiTrialLicenseKey.toTrialString() -
Uses of JSONException in com.stimulsoft.base.system.geometry
Methods in com.stimulsoft.base.system.geometry that throw JSONException -
Uses of JSONException in com.stimulsoft.demo
Methods in com.stimulsoft.demo that throw JSONExceptionModifier and TypeMethodDescriptionstatic voidTest2.createJson(String name, StiJsonDatabase database, StiReport report) -
Uses of JSONException in com.stimulsoft.report
Methods in com.stimulsoft.report that throw JSONExceptionModifier and TypeMethodDescriptionstatic StiReportStiSerializeManager.deserializeReportFromJson(InputStream inputStream) static StiReportStiSerializeManager.deserializeReportFromJson(InputStream inputStream, String password) static DataSetStiJsonToDataSetConverter.detDataTable(String text) static DataSetStiJsonToDataSetConverter.getDataTable(InputStream is) static DataSetStiJsonToDataSetConverter.getDataTable(Object token) voidStiReport.loadFromJson(String text) voidStiMetaTag.LoadFromJsonObject(JSONObject jObject) voidStiMetaTagCollection.LoadFromJsonObject(JSONObject jObject) voidStiPreviewToolBarOptions.LoadFromJsonObject(JSONObject jObject) StiReport.saveToJsonInternal(StiJsonSaveMode mode) StiMetaTag.SaveToJsonObject(StiJsonSaveMode mode) StiMetaTagCollection.SaveToJsonObject(StiJsonSaveMode mode) StiPreviewToolBarOptions.SaveToJsonObject(StiJsonSaveMode Mode) static voidStiSerializeManager.serializeReportToJson(StiReport report, OutputStream outputStream) -
Uses of JSONException in com.stimulsoft.report.barCodes
Methods in com.stimulsoft.report.barCodes that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiAustraliaPost4StateBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiAztecBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiBarCode.LoadFromJsonObject(JSONObject jObject) abstract voidStiBarCodeTypeService.LoadFromJsonObject(JSONObject jObject) voidStiCodabarBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiCode11BarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiCode128BarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiCode39BarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiCode93BarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiDataMatrixBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiDutchKIXBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiEAN13BarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiFIMBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiIntelligentMail4StateBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiInterleaved2of5BarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiITF14BarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiMaxicodeBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiPdf417BarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiPharmacodeBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiPlesseyBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiPostnetBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiQRCodeBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiRoyalMail4StateBarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiSSCC18BarCodeType.LoadFromJsonObject(JSONObject jObject) voidStiStandard2of5BarCodeType.LoadFromJsonObject(JSONObject jObject) static StiBarCodeTypeServiceStiBarCodeTypeService.LoadFromJsonObjectInternal(JSONObject jObject) StiAustraliaPost4StateBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiAztecBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiBarCode.SaveToJsonObject(StiJsonSaveMode mode) StiBarCodeTypeService.SaveToJsonObject(StiJsonSaveMode mode) StiCodabarBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiCode11BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiCode128BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiCode39BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiCode93BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiDataMatrixBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiDutchKIXBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiEAN13BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiFIMBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiIntelligentMail4StateBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiInterleaved2of5BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiITF14BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiMaxicodeBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiPdf417BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiPharmacodeBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiPlesseyBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiPostnetBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiQRCodeBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiRoyalMail4StateBarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiSSCC18BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) StiStandard2of5BarCodeType.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart
Methods in com.stimulsoft.report.chart that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiChart.LoadFromJsonObject(JSONObject jObject) StiChart.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view._3d
Methods in com.stimulsoft.report.chart.view._3d that throw JSONExceptionModifier and TypeMethodDescriptionvoidSti3dOptions.LoadFromJsonObject(JSONObject jObject) voidStiPie3dOptions.LoadFromJsonObject(JSONObject jObject) Sti3dOptions.SaveToJsonObject(StiJsonSaveMode mode) StiPie3dOptions.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.areas
Methods in com.stimulsoft.report.chart.view.areas that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiArea.LoadFromJsonObject(JSONObject jObject) voidStiAxisArea.LoadFromJsonObject(JSONObject jObject) static IStiAreaStiArea.LoadFromJsonObjectInternal(JSONObject jObject) StiArea.SaveToJsonObject(StiJsonSaveMode mode) StiAxisArea.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.areas.clusteredColumn
Methods in com.stimulsoft.report.chart.view.areas.clusteredColumn that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiClusteredColumnArea.LoadFromJsonObject(JSONObject jObject) StiClusteredColumnArea.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.areas.doughnut
Methods in com.stimulsoft.report.chart.view.areas.doughnut that throw JSONException -
Uses of JSONException in com.stimulsoft.report.chart.view.areas.funnel
Methods in com.stimulsoft.report.chart.view.areas.funnel that throw JSONException -
Uses of JSONException in com.stimulsoft.report.chart.view.areas.pie
Methods in com.stimulsoft.report.chart.view.areas.pie that throw JSONExceptionModifier and TypeMethodDescriptionStiPie3dArea.SaveToJsonObject(StiJsonSaveMode mode) StiPieArea.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.areas.radar
Methods in com.stimulsoft.report.chart.view.areas.radar that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiRadarArea.LoadFromJsonObject(JSONObject jObject) StiRadarArea.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.axis
Methods in com.stimulsoft.report.chart.view.axis that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiAxis.LoadFromJsonObject(JSONObject jObject) voidStiAxisDateTimeStep.LoadFromJsonObject(JSONObject jObject) voidStiAxisInteraction.LoadFromJsonObject(JSONObject jObject) voidStiAxisLabels.LoadFromJsonObject(JSONObject jObject) voidStiAxisRange.LoadFromJsonObject(JSONObject jObject) voidStiAxisTicks.LoadFromJsonObject(JSONObject jObject) voidStiAxisTitle.LoadFromJsonObject(JSONObject jObject) voidStiXAxis.LoadFromJsonObject(JSONObject jObject) voidStiYAxis.LoadFromJsonObject(JSONObject jObject) StiAxis.SaveToJsonObject(StiJsonSaveMode mode) StiAxisDateTimeStep.SaveToJsonObject(StiJsonSaveMode mode) StiAxisInteraction.SaveToJsonObject(StiJsonSaveMode mode) StiAxisLabels.SaveToJsonObject(StiJsonSaveMode mode) StiAxisRange.SaveToJsonObject(StiJsonSaveMode mode) StiAxisTicks.SaveToJsonObject(StiJsonSaveMode mode) StiAxisTitle.SaveToJsonObject(StiJsonSaveMode mode) StiXAxis.SaveToJsonObject(StiJsonSaveMode mode) StiXTopAxis.SaveToJsonObject(StiJsonSaveMode mode) StiYAxis.SaveToJsonObject(StiJsonSaveMode mode) StiYRightAxis.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.chartTitle
Methods in com.stimulsoft.report.chart.view.chartTitle that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiChartTitle.LoadFromJsonObject(JSONObject jObject) StiChartTitle.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.conditions
Methods in com.stimulsoft.report.chart.view.conditions that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiChartCondition.LoadFromJsonObject(JSONObject jObject) voidStiChartConditionsCollection.LoadFromJsonObject(JSONObject jObject) StiChartCondition.SaveToJsonObject(StiJsonSaveMode mode) StiChartConditionsCollection.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.constantLines
Methods in com.stimulsoft.report.chart.view.constantLines that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiConstantLines.LoadFromJsonObject(JSONObject jObject) voidStiConstantLinesCollection.LoadFromJsonObject(JSONObject jObject) StiConstantLines.SaveToJsonObject(StiJsonSaveMode mode) StiConstantLinesCollection.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.filter
Methods in com.stimulsoft.report.chart.view.filter that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiChartFilter.LoadFromJsonObject(JSONObject jObject) voidStiChartFiltersCollection.LoadFromJsonObject(JSONObject jObject) StiChartFilter.SaveToJsonObject(StiJsonSaveMode mode) StiChartFiltersCollection.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.gridLines.axis
Methods in com.stimulsoft.report.chart.view.gridLines.axis that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiGridLines.LoadFromJsonObject(JSONObject jObject) StiGridLines.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.gridLines.radar
Methods in com.stimulsoft.report.chart.view.gridLines.radar that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiRadarGridLines.LoadFromJsonObject(JSONObject jObject) StiRadarGridLines.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.interlacing
Methods in com.stimulsoft.report.chart.view.interlacing that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiInterlacing.LoadFromJsonObject(JSONObject jObject) StiInterlacing.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.legend
Methods in com.stimulsoft.report.chart.view.legend that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiLegend.LoadFromJsonObject(JSONObject jObject) StiLegend.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.marker
Methods in com.stimulsoft.report.chart.view.marker that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiLineMarker.LoadFromJsonObject(JSONObject jObject) voidStiMarker.LoadFromJsonObject(JSONObject jObject) StiLineMarker.SaveToJsonObject(StiJsonSaveMode mode) StiMarker.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.radarAxis
Methods in com.stimulsoft.report.chart.view.radarAxis that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiRadarAxis.LoadFromJsonObject(JSONObject jObject) voidStiRadarAxisLabels.LoadFromJsonObject(JSONObject jObject) voidStiXRadarAxis.LoadFromJsonObject(JSONObject jObject) voidStiYRadarAxis.LoadFromJsonObject(JSONObject jObject) StiRadarAxis.SaveToJsonObject(StiJsonSaveMode mode) StiRadarAxisLabels.SaveToJsonObject(StiJsonSaveMode mode) StiXRadarAxis.SaveToJsonObject(StiJsonSaveMode mode) StiYRadarAxis.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series
Methods in com.stimulsoft.report.chart.view.series that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiSeries.LoadFromJsonObject(JSONObject jObject) voidStiSeriesCollection.LoadFromJsonObject(JSONObject jObject) voidStiSeriesInteraction.LoadFromJsonObject(JSONObject jObject) StiSeries.SaveToJsonObject(StiJsonSaveMode mode) StiSeriesCollection.SaveToJsonObject(StiJsonSaveMode mode) StiSeriesInteraction.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.bubble
Methods in com.stimulsoft.report.chart.view.series.bubble that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiBubbleSeries.LoadFromJsonObject(JSONObject jObject) StiBubbleSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.candlestick
Methods in com.stimulsoft.report.chart.view.series.candlestick that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiCandlestickSeries.LoadFromJsonObject(JSONObject jObject) StiCandlestickSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.clusteredColumn
Methods in com.stimulsoft.report.chart.view.series.clusteredColumn that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiAreaSeries.LoadFromJsonObject(JSONObject jObject) voidStiBaseLineSeries.LoadFromJsonObject(JSONObject jObject) voidStiClusteredColumnSeries.LoadFromJsonObject(JSONObject jObject) voidStiSplineAreaSeries.LoadFromJsonObject(JSONObject jObject) voidStiSplineSeries.LoadFromJsonObject(JSONObject jObject) voidStiSteppedAreaSeries.LoadFromJsonObject(JSONObject jObject) voidStiSteppedLineSeries.LoadFromJsonObject(JSONObject jObject) StiAreaSeries.SaveToJsonObject(StiJsonSaveMode mode) StiBaseLineSeries.SaveToJsonObject(StiJsonSaveMode mode) StiClusteredColumnSeries.SaveToJsonObject(StiJsonSaveMode mode) StiSplineAreaSeries.SaveToJsonObject(StiJsonSaveMode mode) StiSplineSeries.SaveToJsonObject(StiJsonSaveMode mode) StiSteppedAreaSeries.SaveToJsonObject(StiJsonSaveMode mode) StiSteppedLineSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.funnel
Methods in com.stimulsoft.report.chart.view.series.funnel that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiFunnelSeries.LoadFromJsonObject(JSONObject jObject) StiFunnelSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.gantt
Methods in com.stimulsoft.report.chart.view.series.gantt that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiGanttSeries.LoadFromJsonObject(JSONObject jObject) StiGanttSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.pie
Methods in com.stimulsoft.report.chart.view.series.pie that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiPie3dSeries.LoadFromJsonObject(JSONObject jObject) voidStiPieSeries.LoadFromJsonObject(JSONObject jObject) StiPie3dSeries.SaveToJsonObject(StiJsonSaveMode mode) StiPieSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.radar
Methods in com.stimulsoft.report.chart.view.series.radar that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiRadarAreaSeries.LoadFromJsonObject(JSONObject jObject) voidStiRadarLineSeries.LoadFromJsonObject(JSONObject jObject) voidStiRadarSeries.LoadFromJsonObject(JSONObject jObject) StiRadarAreaSeries.SaveToJsonObject(StiJsonSaveMode mode) StiRadarLineSeries.SaveToJsonObject(StiJsonSaveMode mode) StiRadarSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.range
Methods in com.stimulsoft.report.chart.view.series.range that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiRangeBarSeries.LoadFromJsonObject(JSONObject jObject) voidStiRangeSeries.LoadFromJsonObject(JSONObject jObject) voidStiSplineRangeSeries.LoadFromJsonObject(JSONObject jObject) voidStiSteppedRangeSeries.LoadFromJsonObject(JSONObject jObject) StiRangeBarSeries.SaveToJsonObject(StiJsonSaveMode mode) StiRangeSeries.SaveToJsonObject(StiJsonSaveMode mode) StiSplineRangeSeries.SaveToJsonObject(StiJsonSaveMode mode) StiSteppedRangeSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.scatter
Methods in com.stimulsoft.report.chart.view.series.scatter that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiScatterSplineSeries.LoadFromJsonObject(JSONObject jObject) StiScatterSeries.SaveToJsonObject(StiJsonSaveMode mode) StiScatterSplineSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.stackedBar
Methods in com.stimulsoft.report.chart.view.series.stackedBar that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiStackedBarSeries.LoadFromJsonObject(JSONObject jObject) StiStackedBarSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.stackedColumn
Methods in com.stimulsoft.report.chart.view.series.stackedColumn that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiStackedAreaSeries.LoadFromJsonObject(JSONObject jObject) voidStiStackedBaseLineSeries.LoadFromJsonObject(JSONObject jObject) voidStiStackedColumnSeries.LoadFromJsonObject(JSONObject jObject) voidStiStackedSplineAreaSeries.LoadFromJsonObject(JSONObject jObject) voidStiStackedSplineSeries.LoadFromJsonObject(JSONObject jObject) StiStackedAreaSeries.SaveToJsonObject(StiJsonSaveMode mode) StiStackedBaseLineSeries.SaveToJsonObject(StiJsonSaveMode mode) StiStackedColumnSeries.SaveToJsonObject(StiJsonSaveMode mode) StiStackedSplineAreaSeries.SaveToJsonObject(StiJsonSaveMode mode) StiStackedSplineSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.series.stock
Methods in com.stimulsoft.report.chart.view.series.stock that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiStockSeries.LoadFromJsonObject(JSONObject jObject) StiStockSeries.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.seriesLabels
Methods in com.stimulsoft.report.chart.view.seriesLabels that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiSeriesLabels.LoadFromJsonObject(JSONObject jObject) static IStiSeriesLabelsStiSeriesLabels.LoadFromJsonObjectInternal(JSONObject jObject, StiChart chart) StiNoneLabels.SaveToJsonObject(StiJsonSaveMode mode) StiSeriesLabels.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.seriesLabels.axis
Methods in com.stimulsoft.report.chart.view.seriesLabels.axis that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiAxisSeriesLabels.LoadFromJsonObject(JSONObject jObject) voidStiOutsideAxisLabels.LoadFromJsonObject(JSONObject jObject) StiAxisSeriesLabels.SaveToJsonObject(StiJsonSaveMode mode) StiOutsideAxisLabels.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.seriesLabels.pie
Methods in com.stimulsoft.report.chart.view.seriesLabels.pie that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiCenterPieLabels.LoadFromJsonObject(JSONObject jObject) voidStiOutsidePieLabels.LoadFromJsonObject(JSONObject jObject) voidStiPieSeriesLabels.LoadFromJsonObject(JSONObject jObject) StiCenterPieLabels.SaveToJsonObject(StiJsonSaveMode mode) StiOutsidePieLabels.SaveToJsonObject(StiJsonSaveMode mode) StiPieSeriesLabels.SaveToJsonObject(StiJsonSaveMode mode) StiTwoColumnsPieLabels.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.strips
Methods in com.stimulsoft.report.chart.view.strips that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiStrips.LoadFromJsonObject(JSONObject jObject) voidStiStripsCollection.LoadFromJsonObject(JSONObject jObject) StiStrips.SaveToJsonObject(StiJsonSaveMode mode) StiStripsCollection.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.styles
Methods in com.stimulsoft.report.chart.view.styles that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiChartStyle.LoadFromJsonObject(JSONObject jObject) static StiChartStyleStiChartStyle.LoadFromJsonObjectInternal(JSONObject jObject) StiChartStyle.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.table
Methods in com.stimulsoft.report.chart.view.table that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiChartTable.LoadFromJsonObject(JSONObject jObject) StiChartTable.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.topN
Methods in com.stimulsoft.report.chart.view.topN that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiSeriesTopN.LoadFromJsonObject(JSONObject jObject) StiSeriesTopN.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.chart.view.trendLines
Methods in com.stimulsoft.report.chart.view.trendLines that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiTrendLine.LoadFromJsonObject(JSONObject jObject) voidStiTrendLinesCollection.LoadFromJsonObject(JSONObject jObject) static IStiTrendLineStiTrendLine.LoadFromJsonObjectInternal(JSONObject jObject) StiTrendLine.SaveToJsonObject(StiJsonSaveMode mode) StiTrendLinesCollection.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components
Methods in com.stimulsoft.report.components that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiBandInteraction.LoadFromJsonObject(JSONObject jObject) voidStiComponent.LoadFromJsonObject(JSONObject JSONObject) voidStiComponentsCollection.LoadFromJsonObject(JSONObject jObject) voidStiCrossHeaderInteraction.LoadFromJsonObject(JSONObject jObject) voidStiDrillDownParameter.LoadFromJsonObject(JSONObject jObject) voidStiFiltersCollection.LoadFromJsonObject(JSONObject jObject) voidStiInteraction.LoadFromJsonObject(JSONObject jObject) voidStiMargins.LoadFromJsonObject(JSONObject jObject) voidStiPage.LoadFromJsonObject(JSONObject jObject) voidStiPagesCollection.LoadFromJsonObject(JSONObject jObject) voidStiParameter.LoadFromJsonObject(JSONObject jObject) voidStiParametersCollection.LoadFromJsonObject(JSONObject jObject) voidStiWatermark.LoadFromJsonObject(JSONObject jObject) StiBandInteraction.SaveToJsonObject(StiJsonSaveMode mode) StiComponent.SaveToJsonObject(StiJsonSaveMode mode) StiComponentsCollection.SaveToJsonObject(StiJsonSaveMode mode) StiCrossHeaderInteraction.SaveToJsonObject(StiJsonSaveMode mode) StiDrillDownParameter.SaveToJsonObject(StiJsonSaveMode mode) StiFiltersCollection.SaveToJsonObject(StiJsonSaveMode mode) StiInteraction.SaveToJsonObject(StiJsonSaveMode mode) StiMargins.SaveToJsonObject(StiJsonSaveMode mode, double defLeft, double defRight, double defTop, double defBotttom) StiPage.SaveToJsonObject(StiJsonSaveMode mode) StiPagesCollection.SaveToJsonObject(StiJsonSaveMode mode) StiParameter.SaveToJsonObject(StiJsonSaveMode mode) StiParametersCollection.SaveToJsonObject(StiJsonSaveMode mode) StiWatermark.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.bands
Methods in com.stimulsoft.report.components.bands that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiBand.LoadFromJsonObject(JSONObject jObject) voidStiChildBand.LoadFromJsonObject(JSONObject jObject) voidStiColumnFooterBand.LoadFromJsonObject(JSONObject jObject) voidStiDataBand.LoadFromJsonObject(JSONObject jObject) voidStiDynamicBand.LoadFromJsonObject(JSONObject jObject) voidStiEmptyBand.LoadFromJsonObject(JSONObject jObject) voidStiFooterBand.LoadFromJsonObject(JSONObject jObject) voidStiGroupFooterBand.LoadFromJsonObject(JSONObject jObject) voidStiGroupHeaderBand.LoadFromJsonObject(JSONObject jObject) voidStiHeaderBand.LoadFromJsonObject(JSONObject jObject) voidStiHierarchicalBand.LoadFromJsonObject(JSONObject jObject) voidStiOverlayBand.LoadFromJsonObject(JSONObject jObject) voidStiPageFooterBand.LoadFromJsonObject(JSONObject jObject) voidStiPageHeaderBand.LoadFromJsonObject(JSONObject jObject) voidStiReportSummaryBand.LoadFromJsonObject(JSONObject jObject) voidStiReportTitleBand.LoadFromJsonObject(JSONObject jObject) voidStiStaticBand.LoadFromJsonObject(JSONObject jObject) voidStiTableOfContents.LoadFromJsonObject(JSONObject jObject) StiBand.SaveToJsonObject(StiJsonSaveMode mode) StiChildBand.SaveToJsonObject(StiJsonSaveMode mode) StiColumnFooterBand.SaveToJsonObject(StiJsonSaveMode mode) StiDataBand.SaveToJsonObject(StiJsonSaveMode mode) StiDynamicBand.SaveToJsonObject(StiJsonSaveMode mode) StiEmptyBand.SaveToJsonObject(StiJsonSaveMode mode) StiFooterBand.SaveToJsonObject(StiJsonSaveMode mode) StiGroupFooterBand.SaveToJsonObject(StiJsonSaveMode mode) StiGroupHeaderBand.SaveToJsonObject(StiJsonSaveMode mode) StiHeaderBand.SaveToJsonObject(StiJsonSaveMode mode) StiHierarchicalBand.SaveToJsonObject(StiJsonSaveMode mode) StiOverlayBand.SaveToJsonObject(StiJsonSaveMode mode) StiPageFooterBand.SaveToJsonObject(StiJsonSaveMode mode) StiPageHeaderBand.SaveToJsonObject(StiJsonSaveMode mode) StiReportSummaryBand.SaveToJsonObject(StiJsonSaveMode mode) StiReportTitleBand.SaveToJsonObject(StiJsonSaveMode mode) StiStaticBand.SaveToJsonObject(StiJsonSaveMode mode) StiTableOfContents.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.complexcomponents
Methods in com.stimulsoft.report.components.complexcomponents that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiClone.LoadFromJsonObject(JSONObject jObject) voidStiContainer.LoadFromJsonObject(JSONObject jObject) voidStiPanel.LoadFromJsonObject(JSONObject jObject) voidStiSubReport.LoadFromJsonObject(JSONObject jObject) StiClone.SaveToJsonObject(StiJsonSaveMode mode) StiContainer.SaveToJsonObject(StiJsonSaveMode mode) StiPanel.SaveToJsonObject(StiJsonSaveMode mode) StiSubReport.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.conditions
Methods in com.stimulsoft.report.components.conditions that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiColorScaleCondition.LoadFromJsonObject(JSONObject jObject) voidStiCondition.LoadFromJsonObject(JSONObject jObject) voidStiConditionsCollection.LoadFromJsonObject(JSONObject jObject) voidStiDataBarCondition.LoadFromJsonObject(JSONObject jObject) voidStiFilter.LoadFromJsonObject(JSONObject jObject) voidStiIconSetCondition.LoadFromJsonObject(JSONObject jObject) voidStiIconSetItem.LoadFromJsonObject(JSONObject jObject) voidStiMultiCondition.LoadFromJsonObject(JSONObject jObject) StiColorScaleCondition.SaveToJsonObject(StiJsonSaveMode mode) StiCondition.SaveToJsonObject(StiJsonSaveMode mode) StiConditionsCollection.SaveToJsonObject(StiJsonSaveMode mode) StiDataBarCondition.SaveToJsonObject(StiJsonSaveMode mode) StiFilter.SaveToJsonObject(StiJsonSaveMode mode) StiIconSetCondition.SaveToJsonObject(StiJsonSaveMode mode) StiIconSetItem.SaveToJsonObject(StiJsonSaveMode mode) StiMultiCondition.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.crossBands
Methods in com.stimulsoft.report.components.crossBands that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiCrossDataBand.LoadFromJsonObject(JSONObject jObject) voidStiCrossFooterBand.LoadFromJsonObject(JSONObject jObject) voidStiCrossGroupFooterBand.LoadFromJsonObject(JSONObject jObject) voidStiCrossGroupHeaderBand.LoadFromJsonObject(JSONObject jObject) voidStiCrossHeaderBand.LoadFromJsonObject(JSONObject jObject) StiCrossDataBand.SaveToJsonObject(StiJsonSaveMode mode) StiCrossFooterBand.SaveToJsonObject(StiJsonSaveMode mode) StiCrossGroupFooterBand.SaveToJsonObject(StiJsonSaveMode mode) StiCrossGroupHeaderBand.SaveToJsonObject(StiJsonSaveMode mode) StiCrossHeaderBand.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.indicators
Methods in com.stimulsoft.report.components.indicators that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiDataBarIndicator.LoadFromJsonObject(JSONObject jObject) voidStiIconSetIndicator.LoadFromJsonObject(JSONObject jObject) voidStiIndicator.LoadFromJsonObject(JSONObject jObject) static StiIndicatorStiIndicator.LoadFromJsonObjectInternal(JSONObject jObject) StiDataBarIndicator.SaveToJsonObject(StiJsonSaveMode mode) StiIconSetIndicator.SaveToJsonObject(StiJsonSaveMode mode) StiIndicator.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.shapeTypes
Methods in com.stimulsoft.report.components.shapeTypes that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiArrowShapeType.LoadFromJsonObject(JSONObject jObject) voidStiBentArrowShapeType.LoadFromJsonObject(JSONObject jObject) voidStiChevronShapeType.LoadFromJsonObject(JSONObject jObject) voidStiComplexArrowShapeType.LoadFromJsonObject(JSONObject jObject) voidStiFlowchartCollateShapeType.LoadFromJsonObject(JSONObject jObject) voidStiFlowchartOffPageConnectorShapeType.LoadFromJsonObject(JSONObject jObject) voidStiFlowchartPreparationShapeType.LoadFromJsonObject(JSONObject jObject) voidStiRoundedRectangleShapeType.LoadFromJsonObject(JSONObject jObject) voidStiShapeTypeService.LoadFromJsonObject(JSONObject jObject) voidStiTriangleShapeType.LoadFromJsonObject(JSONObject jObject) static StiShapeTypeServiceStiShapeTypeService.LoadFromJsonObjectInternal(JSONObject jObject) StiArrowShapeType.SaveToJsonObject(StiJsonSaveMode mode) StiBentArrowShapeType.SaveToJsonObject(StiJsonSaveMode mode) StiChevronShapeType.SaveToJsonObject(StiJsonSaveMode mode) StiComplexArrowShapeType.SaveToJsonObject(StiJsonSaveMode mode) StiFlowchartCollateShapeType.SaveToJsonObject(StiJsonSaveMode mode) StiFlowchartOffPageConnectorShapeType.SaveToJsonObject(StiJsonSaveMode mode) StiFlowchartPreparationShapeType.SaveToJsonObject(StiJsonSaveMode mode) StiRoundedRectangleShapeType.SaveToJsonObject(StiJsonSaveMode mode) StiShapeTypeService.SaveToJsonObject(StiJsonSaveMode mode) StiTriangleShapeType.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.signature
Methods in com.stimulsoft.report.components.signature that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiPdfDigitalSignature.LoadFromJsonObject(JSONObject jObject) voidStiSignature.LoadFromJsonObject(JSONObject jObject) StiPdfDigitalSignature.SaveToJsonObject(StiJsonSaveMode mode) StiSignature.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.simplecomponents
Methods in com.stimulsoft.report.components.simplecomponents that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiCheckBox.LoadFromJsonObject(JSONObject jObject) voidStiContourText.LoadFromJsonObject(JSONObject jObject) voidStiHorizontalLinePrimitive.LoadFromJsonObject(JSONObject jObject) voidStiImage.LoadFromJsonObject(JSONObject jObject) voidStiLinePrimitive.LoadFromJsonObject(JSONObject jObject) voidStiPointPrimitive.LoadFromJsonObject(JSONObject jObject) voidStiRectanglePrimitive.LoadFromJsonObject(JSONObject jObject) voidStiRichText.LoadFromJsonObject(JSONObject jObject) voidStiRoundedRectanglePrimitive.LoadFromJsonObject(JSONObject jObject) voidStiShape.LoadFromJsonObject(JSONObject jObject) voidStiSimpleText.LoadFromJsonObject(JSONObject jObject) voidStiSparkline.LoadFromJsonObject(JSONObject jObject) voidStiText.LoadFromJsonObject(JSONObject jObject) voidStiTextInCells.LoadFromJsonObject(JSONObject jObject) voidStiVerticalLinePrimitive.LoadFromJsonObject(JSONObject jObject) voidStiView.LoadFromJsonObject(JSONObject jObject) voidStiWinControl.LoadFromJsonObject(JSONObject jObject) voidStiZipCode.LoadFromJsonObject(JSONObject jObject) StiCheckBox.SaveToJsonObject(StiJsonSaveMode mode) StiContourText.SaveToJsonObject(StiJsonSaveMode mode) StiHorizontalLinePrimitive.SaveToJsonObject(StiJsonSaveMode mode) StiImage.SaveToJsonObject(StiJsonSaveMode mode) StiLinePrimitive.SaveToJsonObject(StiJsonSaveMode mode) StiPointPrimitive.SaveToJsonObject(StiJsonSaveMode mode) StiPrimitive.SaveToJsonObject(StiJsonSaveMode mode) StiRectanglePrimitive.SaveToJsonObject(StiJsonSaveMode mode) StiRichText.SaveToJsonObject(StiJsonSaveMode mode) StiRoundedRectanglePrimitive.SaveToJsonObject(StiJsonSaveMode mode) StiShape.SaveToJsonObject(StiJsonSaveMode mode) StiSimpleText.SaveToJsonObject(StiJsonSaveMode mode) StiSparkline.SaveToJsonObject(StiJsonSaveMode mode) StiText.SaveToJsonObject(StiJsonSaveMode mode) StiTextInCells.SaveToJsonObject(StiJsonSaveMode mode) StiVerticalLinePrimitive.SaveToJsonObject(StiJsonSaveMode mode) StiView.SaveToJsonObject(StiJsonSaveMode mode) StiWinControl.SaveToJsonObject(StiJsonSaveMode mode) StiZipCode.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.table
Methods in com.stimulsoft.report.components.table that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiTable.LoadFromJsonObject(JSONObject jObject) voidStiTableCell.LoadFromJsonObject(JSONObject jObject) voidStiTableCellCheckBox.LoadFromJsonObject(JSONObject jObject) voidStiTableCellImage.LoadFromJsonObject(JSONObject jObject) voidStiTableCellRichText.LoadFromJsonObject(JSONObject jObject) StiTable.SaveToJsonObject(StiJsonSaveMode mode) StiTableCell.SaveToJsonObject(StiJsonSaveMode mode) StiTableCellCheckBox.SaveToJsonObject(StiJsonSaveMode mode) StiTableCellImage.SaveToJsonObject(StiJsonSaveMode mode) StiTableCellRichText.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.components.textFormats
Methods in com.stimulsoft.report.components.textFormats that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiBooleanFormatService.LoadFromJsonObject(JSONObject jObject) voidStiCurrencyFormatService.LoadFromJsonObject(JSONObject jObject) voidStiDateFormatService.LoadFromJsonObject(JSONObject jObject) voidStiFormatService.LoadFromJsonObject(JSONObject jObject) voidStiNumberFormatService.LoadFromJsonObject(JSONObject jObject) static StiFormatServiceStiFormatService.LoadFromJsonObjectInternal(JSONObject jObject) StiBooleanFormatService.SaveToJsonObject(StiJsonSaveMode mode) StiCurrencyFormatService.SaveToJsonObject(StiJsonSaveMode mode) StiDateFormatService.SaveToJsonObject(StiJsonSaveMode mode) StiFormatService.SaveToJsonObject(StiJsonSaveMode mode) StiGeneralFormatService.SaveToJsonObject(StiJsonSaveMode mode) StiNumberFormatService.SaveToJsonObject(StiJsonSaveMode mode) StiPercentageFormatService.SaveToJsonObject(StiJsonSaveMode mode) StiTimeFormatService.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.crossTab
Methods in com.stimulsoft.report.crossTab that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiCrossCell.LoadFromJsonObject(JSONObject jObject) voidStiCrossColumn.LoadFromJsonObject(JSONObject jObject) voidStiCrossField.LoadFromJsonObject(JSONObject jObject) voidStiCrossHeader.LoadFromJsonObject(JSONObject jObject) voidStiCrossRow.LoadFromJsonObject(JSONObject jObject) voidStiCrossSummary.LoadFromJsonObject(JSONObject jObject) voidStiCrossTab.LoadFromJsonObject(JSONObject jObject) voidStiCrossTitle.LoadFromJsonObject(JSONObject jObject) voidStiCrossTotal.LoadFromJsonObject(JSONObject jObject) StiCrossCell.SaveToJsonObject(StiJsonSaveMode mode) StiCrossColumn.SaveToJsonObject(StiJsonSaveMode mode) StiCrossField.SaveToJsonObject(StiJsonSaveMode mode) StiCrossHeader.SaveToJsonObject(StiJsonSaveMode mode) StiCrossRow.SaveToJsonObject(StiJsonSaveMode mode) StiCrossSummary.SaveToJsonObject(StiJsonSaveMode mode) StiCrossTab.SaveToJsonObject(StiJsonSaveMode mode) StiCrossTitle.SaveToJsonObject(StiJsonSaveMode mode) StiCrossTotal.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.dialogs
Methods in com.stimulsoft.report.dialogs that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiButtonControl.LoadFromJsonObject(JSONObject jObject) voidStiCheckBoxControl.LoadFromJsonObject(JSONObject jObject) voidStiCheckedListBoxControl.LoadFromJsonObject(JSONObject jObject) voidStiComboBoxControl.LoadFromJsonObject(JSONObject jObject) voidStiDateTimePickerControl.LoadFromJsonObject(JSONObject jObject) voidStiForm.LoadFromJsonObject(JSONObject jObject) voidStiGridColumn.LoadFromJsonObject(JSONObject jObject) voidStiGridColumnsCollection.LoadFromJsonObject(JSONObject jObject) voidStiGridControl.LoadFromJsonObject(JSONObject jObject) voidStiGroupBoxControl.LoadFromJsonObject(JSONObject jObject) voidStiLabelControl.LoadFromJsonObject(JSONObject jObject) voidStiListBoxControl.LoadFromJsonObject(JSONObject jObject) voidStiRadioButtonControl.LoadFromJsonObject(JSONObject jObject) voidStiReportControl.LoadFromJsonObject(JSONObject jObject) voidStiTextBoxControl.LoadFromJsonObject(JSONObject jObject) StiButtonControl.SaveToJsonObject(StiJsonSaveMode mode) StiCheckBoxControl.SaveToJsonObject(StiJsonSaveMode mode) StiCheckedListBoxControl.SaveToJsonObject(StiJsonSaveMode mode) StiComboBoxControl.SaveToJsonObject(StiJsonSaveMode mode) StiDateTimePickerControl.SaveToJsonObject(StiJsonSaveMode mode) StiForm.SaveToJsonObject(StiJsonSaveMode mode) StiGridColumn.SaveToJsonObject(StiJsonSaveMode mode) StiGridColumnsCollection.SaveToJsonObject(StiJsonSaveMode mode) StiGridControl.SaveToJsonObject(StiJsonSaveMode mode) StiGroupBoxControl.SaveToJsonObject(StiJsonSaveMode mode) StiLabelControl.SaveToJsonObject(StiJsonSaveMode mode) StiListBoxControl.SaveToJsonObject(StiJsonSaveMode mode) StiRadioButtonControl.SaveToJsonObject(StiJsonSaveMode mode) StiReportControl.SaveToJsonObject(StiJsonSaveMode mode) StiTextBoxControl.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.dictionary
Methods in com.stimulsoft.report.dictionary that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiCalcDataColumn.LoadFromJsonObject(JSONObject jObject) voidStiDataColumn.LoadFromJsonObject(JSONObject jObject) voidStiDataColumnsCollection.LoadFromJsonObject(JSONObject jObject) voidStiDataParameter.LoadFromJsonObject(JSONObject jObject) voidStiDataParametersCollection.LoadFromJsonObject(JSONObject jObject) voidStiDataRelation.LoadFromJsonObject(JSONObject jObject) voidStiDataRelationsCollection.LoadFromJsonObject(JSONObject jObject) voidStiDialogInfo.LoadFromJsonObject(JSONObject jObject, StiReport report) voidStiDictionary.LoadFromJsonObject(JSONObject jObject) voidStiResource.LoadFromJsonObject(JSONObject jObject) voidStiUserFunction.LoadFromJsonObject(JSONObject jObject) voidStiUserFunctionArgument.LoadFromJsonObject(JSONObject jObject) voidStiUserFunctionsCollection.LoadFromJsonObject(JSONObject jObject) voidStiUserFunctionArgumentsCollection.LoadFromJsonObjectEx(JSONObject jObject) voidStiVariable.LoadFromJsonObjectEx(JSONObject jObject, StiReport report) voidStiVariablesCollection.LoadFromJsonObjectEx(JSONObject jObject, StiReport report) StiCalcDataColumn.SaveToJsonObject(StiJsonSaveMode mode) StiDataColumn.SaveToJsonObject(StiJsonSaveMode mode) StiDataColumnsCollection.SaveToJsonObject(StiJsonSaveMode mode) StiDataParameter.SaveToJsonObject(StiJsonSaveMode mode) StiDataParametersCollection.SaveToJsonObject(StiJsonSaveMode mode) StiDataRelation.SaveToJsonObject(StiJsonSaveMode mode) StiDataRelationsCollection.SaveToJsonObject(StiJsonSaveMode mode) StiDialogInfo.SaveToJsonObject()StiDictionary.SaveToJsonObject(StiJsonSaveMode mode) StiResource.SaveToJsonObject(StiJsonSaveMode mode) StiUserFunction.SaveToJsonObject(StiJsonSaveMode mode) StiUserFunctionArgument.SaveToJsonObject(StiJsonSaveMode Mode) StiUserFunctionsCollection.SaveToJsonObject(StiJsonSaveMode mode) StiUserFunctionArgumentsCollection.SaveToJsonObjectEx(StiJsonSaveMode mode) StiVariable.SaveToJsonObjectEx()StiVariablesCollection.SaveToJsonObjectEx(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.dictionary.businessObjects
Methods in com.stimulsoft.report.dictionary.businessObjects that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiBusinessObject.LoadFromJsonObject(JSONObject jObject) voidStiBusinessObjectsCollection.LoadFromJsonObject(JSONObject jObject) StiBusinessObject.SaveToJsonObject(StiJsonSaveMode mode) StiBusinessObjectsCollection.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.dictionary.databases
Methods in com.stimulsoft.report.dictionary.databases that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiJsonDatabase.fillTable(StiDataStoreSource source, StiReport report) StiJsonDatabase.getJSONObject(StiReport report) voidStiCsvDatabase.LoadFromJsonObject(JSONObject jObject) voidStiDatabase.LoadFromJsonObject(JSONObject jObject) voidStiDatabaseCollection.LoadFromJsonObject(JSONObject jObject) voidStiExcelDatabase.LoadFromJsonObject(JSONObject jObject) voidStiFileDatabase.LoadFromJsonObject(JSONObject jObject) voidStiJDBCDatabase.LoadFromJsonObject(JSONObject jObject) voidStiJsonDatabase.LoadFromJsonObject(JSONObject jObject) voidStiNoSqlDatabase.LoadFromJsonObject(JSONObject jObject) voidStiResourcesCollection.LoadFromJsonObject(JSONObject jObject) voidStiSqlDatabase.LoadFromJsonObject(JSONObject jObject) voidStiXmlDatabase.LoadFromJsonObject(JSONObject jObject) voidStiResourcesCollection.LoadFromJsonObjectEx(JSONObject jObject, StiReport report) StiCsvDatabase.SaveToJsonObject(StiJsonSaveMode mode) StiDatabase.SaveToJsonObject(StiJsonSaveMode mode) StiDatabaseCollection.SaveToJsonObject(StiJsonSaveMode mode) StiExcelDatabase.SaveToJsonObject(StiJsonSaveMode mode) StiFileDatabase.SaveToJsonObject(StiJsonSaveMode mode) StiJDBCDatabase.SaveToJsonObject(StiJsonSaveMode mode) StiJsonDatabase.SaveToJsonObject(StiJsonSaveMode mode) StiNoSqlDatabase.SaveToJsonObject(StiJsonSaveMode mode) StiResourcesCollection.SaveToJsonObject(StiJsonSaveMode mode) StiSqlDatabase.SaveToJsonObject(StiJsonSaveMode mode) StiXmlDatabase.SaveToJsonObject(StiJsonSaveMode mode) StiResourcesCollection.SaveToJsonObjectEx(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.dictionary.dataSources
Methods in com.stimulsoft.report.dictionary.dataSources that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiCsvSource.LoadFromJsonObject(JSONObject jObject) voidStiDataSource.LoadFromJsonObject(JSONObject jObject) voidStiDataSourcesCollection.LoadFromJsonObject(JSONObject jObject) voidStiDataStoreSource.LoadFromJsonObject(JSONObject jObject) voidStiDbUserSource.LoadFromJsonObject(JSONObject jObject) voidStiSqlSource.LoadFromJsonObject(JSONObject jObject) StiCsvSource.SaveToJsonObject(StiJsonSaveMode mode) StiDataSource.SaveToJsonObject(StiJsonSaveMode mode) StiDataSourcesCollection.SaveToJsonObject(StiJsonSaveMode mode) StiDataStoreSource.SaveToJsonObject(StiJsonSaveMode mode) StiDataTableSource.SaveToJsonObject(StiJsonSaveMode mode) StiDbUserSource.SaveToJsonObject(StiJsonSaveMode mode) StiSqlSource.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.engine.engineV2.builders
Methods in com.stimulsoft.report.engine.engineV2.builders that throw JSONException -
Uses of JSONException in com.stimulsoft.report.events
Methods in com.stimulsoft.report.events that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiEvent.LoadFromJsonObject(JSONObject jObject) StiEvent.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.expressions
Methods in com.stimulsoft.report.expressions that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiExpression.LoadFromJsonObject(JSONObject jObject) StiExpression.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.globalization
Methods in com.stimulsoft.report.globalization that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiGlobalizationContainer.LoadFromJsonObject(JSONObject jObject) voidStiGlobalizationContainerCollection.LoadFromJsonObject(JSONObject jObject) voidStiGlobalizationItem.LoadFromJsonObject(JSONObject jObject) StiGlobalizationContainer.SaveToJsonObject(StiJsonSaveMode mode) StiGlobalizationContainerCollection.SaveToJsonObject(StiJsonSaveMode mode) StiGlobalizationItem.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.helpers
Methods in com.stimulsoft.report.helpers that throw JSONExceptionModifier and TypeMethodDescriptionstatic DataSetStiResourceArrayToDataSet.get(StiResourceType resourceType, byte[] array) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge
Methods in com.stimulsoft.report.infographics.gauge that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiGauge.LoadFromJsonObject(JSONObject jObject) StiGauge.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.collections
Methods in com.stimulsoft.report.infographics.gauge.collections that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiBarRangeListCollection.LoadFromJsonObject(JSONObject jObject) voidStiCustomValuesCollection.LoadFromJsonObject(JSONObject jObject) voidStiFilterCollection.LoadFromJsonObject(JSONObject jObject) voidStiGaugeElementCollection.LoadFromJsonObject(JSONObject jObject) voidStiRangeCollection.LoadFromJsonObject(JSONObject jObject) voidStiScaleCollection.LoadFromJsonObject(JSONObject jObject) StiBarRangeListCollection.SaveToJsonObject(StiJsonSaveMode mode) StiCustomValuesCollection.SaveToJsonObject(StiJsonSaveMode mode) StiFilterCollection.SaveToJsonObject(StiJsonSaveMode mode) StiGaugeElementCollection.SaveToJsonObject(StiJsonSaveMode mode) StiRangeCollection.SaveToJsonObject(StiJsonSaveMode mode) StiScaleCollection.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.indicators
Methods in com.stimulsoft.report.infographics.gauge.indicators that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiIndicatorRangeInfo.LoadFromJsonObject(JSONObject jObject) voidStiLinearBar.LoadFromJsonObject(JSONObject jObject) voidStiLinearIndicatorRangeInfo.LoadFromJsonObject(JSONObject jObject) voidStiLinearMarker.LoadFromJsonObject(JSONObject jObject) voidStiNeedle.LoadFromJsonObject(JSONObject jObject) voidStiRadialBar.LoadFromJsonObject(JSONObject jObject) voidStiRadialIndicatorRangeInfo.LoadFromJsonObject(JSONObject jObject) voidStiRadialMarker.LoadFromJsonObject(JSONObject jObject) voidStiStateIndicator.LoadFromJsonObject(JSONObject jObject) voidStiStateIndicatorFilter.LoadFromJsonObject(JSONObject jObject) StiIndicatorRangeInfo.SaveToJsonObject(StiJsonSaveMode mode) StiLinearBar.SaveToJsonObject(StiJsonSaveMode mode) StiLinearIndicatorRangeInfo.SaveToJsonObject(StiJsonSaveMode mode) StiLinearMarker.SaveToJsonObject(StiJsonSaveMode mode) StiNeedle.SaveToJsonObject(StiJsonSaveMode mode) StiRadialBar.SaveToJsonObject(StiJsonSaveMode mode) StiRadialIndicatorRangeInfo.SaveToJsonObject(StiJsonSaveMode mode) StiRadialMarker.SaveToJsonObject(StiJsonSaveMode mode) StiStateIndicator.SaveToJsonObject(StiJsonSaveMode mode) StiStateIndicatorFilter.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.primitives.base
Methods in com.stimulsoft.report.infographics.gauge.primitives.base that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiGaugeElement.LoadFromJsonObject(JSONObject jObject) StiGaugeElement.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.primitives.indicators
Methods in com.stimulsoft.report.infographics.gauge.primitives.indicators that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiBarBase.LoadFromJsonObject(JSONObject jObject) voidStiIndicatorBase.LoadFromJsonObject(JSONObject jObject) voidStiMarkerBase.LoadFromJsonObject(JSONObject jObject) StiBarBase.SaveToJsonObject(StiJsonSaveMode mode) StiIndicatorBase.SaveToJsonObject(StiJsonSaveMode mode) StiMarkerBase.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.primitives.range
Methods in com.stimulsoft.report.infographics.gauge.primitives.range that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiRangeBase.LoadFromJsonObject(JSONObject jObject) voidStiScaleRangeList.LoadFromJsonObject(JSONObject jObject) StiRangeBase.SaveToJsonObject(StiJsonSaveMode mode) StiScaleRangeList.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.primitives.scales
Methods in com.stimulsoft.report.infographics.gauge.primitives.scales that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiScaleBase.LoadFromJsonObject(JSONObject jObject) StiScaleBase.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.primitives.tick
Methods in com.stimulsoft.report.infographics.gauge.primitives.tick that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiRadialTickLabelBase.LoadFromJsonObject(JSONObject jObject) voidStiRadialTickMarkBase.LoadFromJsonObject(JSONObject jObject) voidStiTickBase.LoadFromJsonObject(JSONObject jObject) voidStiTickLabelBase.LoadFromJsonObject(JSONObject jObject) voidStiTickMarkBase.LoadFromJsonObject(JSONObject jObject) StiRadialTickLabelBase.SaveToJsonObject(StiJsonSaveMode mode) StiRadialTickMarkBase.SaveToJsonObject(StiJsonSaveMode mode) StiTickBase.SaveToJsonObject(StiJsonSaveMode mode) StiTickLabelBase.SaveToJsonObject(StiJsonSaveMode mode) StiTickMarkBase.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.range
Methods in com.stimulsoft.report.infographics.gauge.range that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiLinearRange.LoadFromJsonObject(JSONObject jObject) voidStiLinearRangeList.LoadFromJsonObject(JSONObject jObject) voidStiRadialRange.LoadFromJsonObject(JSONObject jObject) voidStiRadialRangeList.LoadFromJsonObject(JSONObject jObject) StiLinearRange.SaveToJsonObject(StiJsonSaveMode mode) StiLinearRangeList.SaveToJsonObject(StiJsonSaveMode mode) StiRadialRange.SaveToJsonObject(StiJsonSaveMode mode) StiRadialRangeList.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.scales
Methods in com.stimulsoft.report.infographics.gauge.scales that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiLinearScale.LoadFromJsonObject(JSONObject jObject) voidStiRadialScale.LoadFromJsonObject(JSONObject jObject) StiLinearScale.SaveToJsonObject(StiJsonSaveMode mode) StiRadialScale.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.styles.view
Methods in com.stimulsoft.report.infographics.gauge.styles.view that throw JSONExceptionModifier and TypeMethodDescriptionstatic StiGaugeStyleXFStiGaugeStyleXF.LoadFromJsonObjectInternal(JSONObject jObject) StiGaugeStyleXF.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.tick
Methods in com.stimulsoft.report.infographics.gauge.tick that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiCustomValueBase.LoadFromJsonObject(JSONObject jObject) StiCustomValueBase.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.tick.linear.label
Methods in com.stimulsoft.report.infographics.gauge.tick.linear.label that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiLinearTickLabelCustom.LoadFromJsonObject(JSONObject jObject) voidStiLinearTickLabelCustomValue.LoadFromJsonObject(JSONObject jObject) voidStiLinearTickLabelMinor.LoadFromJsonObject(JSONObject jObject) StiLinearTickLabelCustom.SaveToJsonObject(StiJsonSaveMode mode) StiLinearTickLabelCustomValue.SaveToJsonObject(StiJsonSaveMode mode) StiLinearTickLabelMajor.SaveToJsonObject(StiJsonSaveMode mode) StiLinearTickLabelMinor.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.tick.linear.mark
Methods in com.stimulsoft.report.infographics.gauge.tick.linear.mark that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiLinearTickMarkCustom.LoadFromJsonObject(JSONObject jObject) voidStiLinearTickMarkCustomValue.LoadFromJsonObject(JSONObject jObject) voidStiLinearTickMarkMinor.LoadFromJsonObject(JSONObject jObject) StiLinearTickMarkCustom.SaveToJsonObject(StiJsonSaveMode mode) StiLinearTickMarkCustomValue.SaveToJsonObject(StiJsonSaveMode mode) StiLinearTickMarkMajor.SaveToJsonObject(StiJsonSaveMode mode) StiLinearTickMarkMinor.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.tick.radial.label
Methods in com.stimulsoft.report.infographics.gauge.tick.radial.label that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiRadialTickLabelCustom.LoadFromJsonObject(JSONObject jObject) voidStiRadialTickLabelCustomValue.LoadFromJsonObject(JSONObject jObject) voidStiRadialTickLabelMinor.LoadFromJsonObject(JSONObject jObject) StiRadialTickLabelCustom.SaveToJsonObject(StiJsonSaveMode mode) StiRadialTickLabelCustomValue.SaveToJsonObject(StiJsonSaveMode mode) StiRadialTickLabelMajor.SaveToJsonObject(StiJsonSaveMode mode) StiRadialTickLabelMinor.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.infographics.gauge.tick.radial.mark
Methods in com.stimulsoft.report.infographics.gauge.tick.radial.mark that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiRadialTickMarkCustom.LoadFromJsonObject(JSONObject jObject) voidStiRadialTickMarkCustomValue.LoadFromJsonObject(JSONObject jObject) voidStiRadialTickMarkMinor.LoadFromJsonObject(JSONObject jObject) StiRadialTickMarkCustom.SaveToJsonObject(StiJsonSaveMode mode) StiRadialTickMarkCustomValue.SaveToJsonObject(StiJsonSaveMode mode) StiRadialTickMarkMajor.SaveToJsonObject(StiJsonSaveMode mode) StiRadialTickMarkMinor.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.json
Methods in com.stimulsoft.report.json that throw JSONExceptionModifier and TypeMethodDescriptionstatic DataSetStiJsonToDataSetConverterV2.getDataSet(Object json) static DataSetStiJsonToDataSetConverterV2.getDataSet(Object json, StiDataStoreSource source) -
Uses of JSONException in com.stimulsoft.report.maps
Methods in com.stimulsoft.report.maps that throw JSONExceptionModifier and TypeMethodDescriptionstatic List<StiMapData> StiMap.getDefaultMapData(StiMapID mapID) StiMap.GetMapData()static List<StiMapData> StiMap.getMapDataInternal(String mapData, StiMapID mapID) static List<StiMapData> StiMap.getMapDataInternal(String mapData, StiMapID mapID, StiRefObject<Boolean> isHashDataEmpty) voidStiMap.LoadFromJsonObject(JSONObject jObject) static StiMapSvgContainerStiMapLoader.loadResource(String resourceName) voidStiMapSvgContainer.populateObject(String jsonText) StiMap.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.maps.helpers
Methods in com.stimulsoft.report.maps.helpers that throw JSONException -
Uses of JSONException in com.stimulsoft.report.painters
Methods in com.stimulsoft.report.painters that throw JSONException -
Uses of JSONException in com.stimulsoft.report.painters.context.chart.geoms
Methods in com.stimulsoft.report.painters.context.chart.geoms that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiArcSegmentGeom.LoadFromJsonObject(JSONObject jObject) voidStiBorderGeom.LoadFromJsonObject(JSONObject jObject) voidStiCachedShadowGeom.LoadFromJsonObject(JSONObject jObject) voidStiCurveGeom.LoadFromJsonObject(JSONObject jObject) voidStiCurveSegmentGeom.LoadFromJsonObject(JSONObject jObject) voidStiEllipseGeom.LoadFromJsonObject(JSONObject jObject) voidStiFontGeom.LoadFromJsonObject(JSONObject jObject) voidStiGeom.LoadFromJsonObject(JSONObject jObject) voidStiLineGeom.LoadFromJsonObject(JSONObject jObject) voidStiLineSegmentGeom.LoadFromJsonObject(JSONObject jObject) voidStiLinesGeom.LoadFromJsonObject(JSONObject jObject) voidStiLinesSegmentGeom.LoadFromJsonObject(JSONObject jObject) voidStiPathGeom.LoadFromJsonObject(JSONObject jObject) voidStiPenGeom.LoadFromJsonObject(JSONObject jObject) voidStiPieSegmentGeom.LoadFromJsonObject(JSONObject jObject) voidStiPopClipGeom.LoadFromJsonObject(JSONObject jObject) voidStiPopSmothingModeGeom.LoadFromJsonObject(JSONObject jObject) voidStiPopTextRenderingHintGeom.LoadFromJsonObject(JSONObject jObject) voidStiPopTransformGeom.LoadFromJsonObject(JSONObject jObject) voidStiPushClipGeom.LoadFromJsonObject(JSONObject jObject) voidStiPushRotateTransformGeom.LoadFromJsonObject(JSONObject jObject) voidStiPushSmothingModeToAntiAliasGeom.LoadFromJsonObject(JSONObject jObject) voidStiPushTextRenderingHintToAntiAliasGeom.LoadFromJsonObject(JSONObject jObject) voidStiPushTranslateTransformGeom.LoadFromJsonObject(JSONObject jObject) voidStiSegmentGeom.LoadFromJsonObject(JSONObject jObject) voidStiShadowGeom.LoadFromJsonObject(JSONObject jObject) voidStiStringFormatGeom.LoadFromJsonObject(JSONObject jObject) voidStiTextGeom.LoadFromJsonObject(JSONObject jObject) protected JSONObject[]StiGeom.SaveGeomListToJsonObject(List<StiSegmentGeom> geoms, StiJsonSaveMode mode) protected JSONObject[]StiGeom.SavePointFArrayToJsonObject(StiPoint[] points) static JSONObjectStiGeom.SavePointFToJsonObject(StiPoint pos) static JSONObjectStiGeom.SaveRectangleDToJsonObject(StiRectangle rect) static JSONObjectStiGeom.SaveRectangleFToJsonObject(StiRectangle rect) static JSONObjectStiGeom.SaveRectangleToJsonObject(StiRectangle rect) protected JSONObjectStiGeom.SaveRectToJsonObject(Object rect) StiArcSegmentGeom.SaveToJsonObject(StiJsonSaveMode mode) StiBorderGeom.SaveToJsonObject(StiJsonSaveMode mode) StiCachedShadowGeom.SaveToJsonObject(StiJsonSaveMode mode) StiCurveGeom.SaveToJsonObject(StiJsonSaveMode mode) StiCurveSegmentGeom.SaveToJsonObject(StiJsonSaveMode mode) StiEllipseGeom.SaveToJsonObject(StiJsonSaveMode mode) StiFontGeom.SaveToJsonObject(StiJsonSaveMode mode) StiGeom.SaveToJsonObject(StiJsonSaveMode mode) StiLineGeom.SaveToJsonObject(StiJsonSaveMode mode) StiLineSegmentGeom.SaveToJsonObject(StiJsonSaveMode mode) StiLinesGeom.SaveToJsonObject(StiJsonSaveMode mode) StiLinesSegmentGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPathGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPenGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPieSegmentGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPopClipGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPopSmothingModeGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPopTextRenderingHintGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPopTransformGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPushClipGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPushRotateTransformGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPushSmothingModeToAntiAliasGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPushTextRenderingHintToAntiAliasGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPushTranslateTransformGeom.SaveToJsonObject(StiJsonSaveMode mode) StiSegmentGeom.SaveToJsonObject(StiJsonSaveMode mode) StiShadowGeom.SaveToJsonObject(StiJsonSaveMode mode) StiStringFormatGeom.SaveToJsonObject(StiJsonSaveMode mode) StiTextGeom.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.painters.context.chart.geoms.animation
Methods in com.stimulsoft.report.painters.context.chart.geoms.animation that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiAnimationGeom.LoadFromJsonObject(JSONObject jObject) StiAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiBorderAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiClusteredBarSeriesAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiClusteredColumnSeriesAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiCurveAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiEllipseAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiLabelAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiLinesAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPathAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiPathElementAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) StiShadowAnimationGeom.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.reportresources
Methods in com.stimulsoft.report.reportresources that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiReportResource.LoadFromJsonObject(JSONObject jObject) voidStiReportResourceCollection.LoadFromJsonObject(JSONObject jObject) StiReportResource.SaveToJsonObject(StiJsonSaveMode mode) StiReportResourceCollection.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.styles
Methods in com.stimulsoft.report.styles that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiBaseStyle.LoadFromJsonObject(JSONObject jObject) voidStiChartStyle.LoadFromJsonObject(JSONObject jObject) voidStiCrossTabStyle.LoadFromJsonObject(JSONObject jObject) voidStiDialogStyle.LoadFromJsonObject(JSONObject jObject) voidStiIndicatorStyle.LoadFromJsonObject(JSONObject jObject) voidStiStyle.LoadFromJsonObject(JSONObject jObject) voidStiStylesCollection.LoadFromJsonObject(JSONObject jObject) voidStiTableStyle.LoadFromJsonObject(JSONObject jObject) StiBaseStyle.SaveToJsonObject(StiJsonSaveMode mode) StiChartStyle.SaveToJsonObject(StiJsonSaveMode mode) StiCrossTabStyle.SaveToJsonObject(StiJsonSaveMode mode) StiDialogStyle.SaveToJsonObject(StiJsonSaveMode mode) StiGaugeStyle.SaveToJsonObject(StiJsonSaveMode mode) StiIndicatorStyle.SaveToJsonObject(StiJsonSaveMode mode) StiStyle.SaveToJsonObject(StiJsonSaveMode mode) StiStylesCollection.SaveToJsonObject(StiJsonSaveMode mode) StiTableStyle.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.styles.conditions
Methods in com.stimulsoft.report.styles.conditions that throw JSONExceptionModifier and TypeMethodDescriptionvoidStiStyleCondition.LoadFromJsonObject(JSONObject jObject) voidStiStyleConditionsCollection.LoadFromJsonObject(JSONObject jObject) StiStyleCondition.SaveToJsonObject(StiJsonSaveMode mode) StiStyleConditionsCollection.SaveToJsonObject(StiJsonSaveMode mode) -
Uses of JSONException in com.stimulsoft.report.units
Methods in com.stimulsoft.report.units that throw JSONExceptionModifier and TypeMethodDescriptionstatic StiUnitStiUnit.LoadFromJsonObject(JSONObject jObject) static JSONObjectStiUnit.SaveToJsonObject(StiUnit unit) -
Uses of JSONException in com.stimulsoft.web.classes
Methods in com.stimulsoft.web.classes that throw JSONException -
Uses of JSONException in com.stimulsoft.web.helper
Methods in com.stimulsoft.web.helper that throw JSONExceptionModifier and TypeMethodDescriptionstatic StiRequestParamsStiRequestParamsHelper.get(StiHttpServletRequest httpContext, StiHttpServletResponse response, StringBuffer jsonParams) static StiWebActionResultStiReportHelper.interactionResult(StiRequestParams requestParams, StiReport report, StiHttpServletRequest request) static StiWebActionResultStiReportHelper.openReportResult(StiRequestParams requestParams, StiHttpServletRequest request) StiVariablesHelper.validateVariables(StiReport report, StiRequestParams requestParams) static StiWebActionResultStiReportHelper.viewerResult(StiRequestParams requestParams, StiReport report) -
Uses of JSONException in com.stimulsoft.web.utils
Methods in com.stimulsoft.web.utils that throw JSONExceptionModifier and TypeMethodDescriptionstatic StiWebActionResultStiWebExportReportUtil.exportAsBmp(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to BMP format.static StiWebActionResultStiWebExportReportUtil.exportAsCsv(StiReport report, StiDataExportSettings settings, OutputStream stream) Exports report to CSV format.static StiWebActionResultStiWebExportReportUtil.exportAsExcel(StiReport report, StiExcelExportSettings settings, OutputStream stream) Exports report to Microsoft Excel format.static StiWebActionResultStiWebExportReportUtil.exportAsExcel2007(StiReport report, StiExcelExportSettings settings, OutputStream stream) Exports report to Microsoft Excel 2007 format.static StiWebActionResultStiWebExportReportUtil.exportAsExcelXml(StiReport report, StiExcelExportSettings settings, OutputStream stream) Exports report to Microsoft Excel Xml format.static StiWebActionResultStiWebExportReportUtil.exportAsJpeg(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to JPEG format.static StiWebActionResultStiWebExportReportUtil.exportAsOds(StiReport report, StiOdsExportSettings settings, OutputStream stream) static StiWebActionResultStiWebExportReportUtil.exportAsPcx(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to PCX format.static StiWebActionResultStiWebExportReportUtil.exportAsPng(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to PNG format.static StiWebActionResultStiWebExportReportUtil.exportAsSvg(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to Scalable Vector Graphics (SVG) format.static StiWebActionResultStiWebExportReportUtil.exportAsSvgz(StiReport report, StiImageExportSettings settings, OutputStream stream) static StiWebActionResultStiWebExportReportUtil.exportAsSylk(StiReport report, StiDataExportSettings settings, OutputStream stream) Exports report to Symbolic Link (SYLK) format.static StiWebActionResultStiWebExportReportUtil.saveDocumentFile(StiReport report, OutputStream stream) Save report to Document File (MDC, MDZ, MDX) -
Uses of JSONException in com.stimulsoft.webdesigner
Methods in com.stimulsoft.webdesigner that throw JSONExceptionModifier and TypeMethodDescriptionstatic StiWebActionResultStiWebDesignerActions.exportReportResult(StiRequestParams requestParams, StiReport report, StiExportSettings settings, StiHttpServletRequest httpContext, StiHttpServletResponse response, StringBuffer jsonParams) static StringStiWebDesigner.getActionCommandName(StiHttpServletRequest httpContext, JSONObject jsonObject) Get the name of inner command.static StiReportStiWebDesignerHelper.getActionReportObject(StiRequestParams requestParams, StiHttpServletRequest httpContext) Get the current report template for the current action of the component.StiWebDesignerHelper.getActionReportObject(StiHttpServletRequest httpContext, StiHttpServletResponse response, StringBuffer jsonParams) Get the current report template for the current action of the component.StiWebDesignerRender.getDesigner(URL context, Object handler, StiHttpServletRequest request, StiHttpServletResponse response, Object servletContext) static ObjectStiWebDesigner.getHandler(StiHttpServletRequest request, StiRequestParams requestParams) static StiReportStiWebDesignerCommands.getNewReport(StiRequestParams requestParams) StiWebDesigner.getReportSnapshotCallbackResult(HashMap<String, Object> callbackResult, StiHttpServletRequest httpContext, StiReport report, HashMap<String, Object> parameters) static StiRequestParamsStiWebDesigner.getRequestParams(StiHttpServletRequest httpContext, StiHttpServletResponse response) static StiRequestParamsStiWebDesignerHelper.getRequestParams(StiHttpServletRequest httpContext, StiHttpServletResponse response, StringBuffer jsonParams) StiWebDesignerHelper.getWebDesigner(StiWebDesignerOptions options, URL context, StiHttpServletRequest request, StiHttpServletResponse response, Object handler, StiServletContext servletContext) StiWebDesignerHelper.getWebDesigner(String designerID, StiWebDesignerOptions options, URL context, StiHttpServletRequest request, StiHttpServletResponse response, Object handler, Object servletContext) StiWebDesignerHelper.getWebDesigner(String designerID, URL context, StiHttpServletRequest request, StiHttpServletResponse response, Object handler, StiServletContext servletContext) StiWebDesignerHelper.getWebDesigner(URL context, StiHttpServletRequest request, StiHttpServletResponse response, Object handler, StiServletContext servletContext) protected StringStiWebDesignerRender.renderJsonParameters(Element root, Document doc, URL context, StiReport report, StiHttpServletRequest request, StiHttpServletResponse response, Object handler, Object servletContext) -
Uses of JSONException in com.stimulsoft.webdesigner.helper
Methods in com.stimulsoft.webdesigner.helper that throw JSONExceptionModifier and TypeMethodDescriptionstatic voidStiReportEdit.alignToGridComponents(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiStylesHelper.applyStyleProperties(StiBaseStyle style, HashMap<String, Object> properties, StiReport report) static voidStiReportEdit.changeArrangeComponents(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static StiBaseConditionStiReportEdit.createColorScaleCondition(HashMap<String, Object> conditionObject) static StiBaseConditionStiReportEdit.createDataBarCondition(HashMap<String, Object> conditionObject) static StiBaseConditionStiReportEdit.createHighlightCondition(HashMap<String, Object> conditionObject, StiReport report) static StiBaseConditionStiReportEdit.createIconSetCondition(HashMap<String, Object> conditionObject) static voidStiDictionaryHelper.createOrEditBusinessObject(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.createOrEditColumn(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.createOrEditConnection(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult, StiWebDesignerOptions options) static voidStiDictionaryHelper.createOrEditDataSource(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult, StiWebDesignerOptions options) static voidStiDictionaryHelper.createOrEditParameter(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.createOrEditRelation(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.createOrEditResource(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.createOrEditUserFunction(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.createOrEditVariable(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiStylesHelper.createStyleCollection(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.createVariablesCategory(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.deleteColumn(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.deleteConnection(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.editBusinessObjectCategory(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static StiConditionsCollectionStiReportEdit.getConditionsCollectionFromJSObject(Object propertyValue, StiReport report) StiWebDesignerOptionsHelper.getDesignerOptions(StiRequestParams requestParams) static StiFormatServiceStiTextFormatHelper.getFormatService(HashMap<String, Object> properties) StiMapHelper.getMapDataForJS(StiMap map) StiMapHelper.getMapProperties(StiMap map) static voidStiReportEdit.getPreviewPages(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static StiReportStiWizardHelper.getReportFromWizardOptions(StiReport createdReport, HashMap<String, Object> reportOptions, HashMap<String, Object> wizardDataSources) static voidStiReportResourcesHelper.getResourceViewData(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.getSqlParameterTypes(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiReportEdit.removeComponent(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.retrieveColumns(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiReportEdit.setChartStyleProperty(Object component, Object propertyValue) static voidStiReportEdit.setConditionsProperty(Object component, Object propertyValue, StiReport report) static voidStiChartHelper.setContainerValue(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiReportEdit.setCrossTabStyleProperty(Object component, Object propertyValue) static voidStiReportEdit.setDataSourceProperty(Object component, Object propValue) static voidStiReportEdit.setFilterDataProperty(Object component, String propertyValue) static voidstatic voidStiReportEdit.setFiltersProperty(Object obj, HashMap<String, Object> value) static voidStiReportEdit.setInteractionProperty(Object component, Object propertyValue) static voidStiReportEdit.setSortDataProperty(Object component, Object propertyValue) static voidstatic voidStiStylesHelper.setStyleConditionsProprty(StiBaseStyle style, ArrayList<HashMap<String, Object>> conditions) static voidStiReportEdit.setStylesProperty(Object component, Object propertyValue, StiReport report) static voidStiReportEdit.setSubReportParametersProperty(Object component, ArrayList<HashMap<String, Object>> propertyValue) static voidStiReportEdit.setTextFormatProperty(Object component, HashMap<String, Object> propertyValue) static voidStiReportEdit.setTextFormatProperty(Object component, HashMap<String, Object> propertyValue, String propertyName) static voidStiReportEdit.setToClipboard(StiHttpServletRequest httpContext, StiRequestParams requestParams, StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiDictionaryHelper.testConnection(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult, StiWebDesignerOptions options) static voidStiReportEdit.updateEvents(StiReport report, HashMap<String, Object> param, HashMap<String, Object> callbackResult) static voidStiStylesHelper.writeStylesToReport(StiReport report, List stylesCollection) -
Uses of JSONException in com.stimulsoft.webviewer
Methods in com.stimulsoft.webviewer that throw JSONExceptionModifier and TypeMethodDescriptionstatic StiWebActionResultStiWebViewerActions.emailReportResult(StiRequestParams requestParams, StiReport report, StiMailProperties options, StiExportSettings settings, StiHttpServletRequest request, StiHttpServletResponse response) static StiWebActionResultStiWebViewerActions.emailReportResult(StiHttpServletRequest request, StiHttpServletResponse response) static StiWebActionResultStiWebViewerActions.exportReportResult(StiRequestParams requestParams, StiReport report, StiExportSettings settings, StiHttpServletRequest httpContext, StiHttpServletResponse response) Get the action result required for export the report.static StiWebActionResultStiWebViewerActions.exportReportResult(StiRequestParams requestParams, StiReport report, StiHttpServletRequest httpContext, StiHttpServletResponse response) static StiWebActionResultStiWebViewerActions.exportReportResult(StiHttpServletRequest httpContext, StiHttpServletResponse response, StiRequestParams requestParams, StiExportSettings settings) static StiWebActionResultStiWebViewerActions.getReportResult(StiRequestParams requestParams, StiReport report, StiHttpServletRequest request, StiHttpServletResponse response) Get the action result required for show the specified report in the viewer.static StiWebActionResultStiWebViewerActions.getReportResult(StiHttpServletRequest request, StiHttpServletResponse response) Get the action result required for show the specified report in the viewer.static StiRequestParamsStiWebViewerHelper.getRequestParams(StiHttpServletRequest httpContext, StiHttpServletResponse response) static StiWebActionResultStiWebViewerActions.interactionResult(StiReport report, StiHttpServletRequest httpContext, StiHttpServletResponse response) Get the action result required for interactive operations with a report.static StiWebActionResultStiWebViewerActions.interactionResult(StiRequestParams requestParams, StiReport report, StiHttpServletRequest httpContext, StiHttpServletResponse response) Get the action result required for interactive operations with a report.static ObjectStiWebViewerActions.interactionResult(StiRequestParams requestParams, StiHttpServletRequest httpContext, StiHttpServletResponse response) Get the action result required for interactive operations with a report.static ObjectStiWebViewerActions.interactionResult(StiHttpServletRequest httpContext, StiHttpServletResponse response) Get the action result required for interactive operations with a report.static ObjectStiWebViewerActions.viewerEventResult(StiReport report, StiHttpServletRequest httpContext, StiHttpServletResponse response) Get the action result required for the various requests of the viewer.The specified report will be used.static StiWebActionResultStiWebViewerActions.viewerEventResult(StiRequestParams requestParams, StiReport report, StiHttpServletRequest httpContext, StiHttpServletResponse response) Internal use only.static ObjectStiWebViewerActions.viewerEventResult(StiRequestParams requestParams, StiHttpServletRequest httpContext, StiHttpServletResponse response) Get the action result required for the various requests of the viewer.static ObjectStiWebViewerActions.viewerEventResult(StiHttpServletRequest httpContext, StiHttpServletResponse response) Get the action result required for the various requests of the viewer. -
Uses of JSONException in com.stimulsoft.webviewer.helper
Methods in com.stimulsoft.webviewer.helper that throw JSONExceptionModifier and TypeMethodDescriptionstatic StiWebActionResultStiExportsClass.exportAsBmp(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to BMP format.static StiWebActionResultStiExportsClass.exportAsCsv(StiReport report, StiDataExportSettings settings, OutputStream stream) Exports report to CSV format.static StiWebActionResultStiExportsClass.exportAsExcel(StiReport report, StiExcelExportSettings settings, OutputStream stream) Exports report to Microsoft Excel format.static StiWebActionResultStiExportsClass.exportAsExcel2007(StiReport report, StiExcelExportSettings settings, OutputStream stream) Exports report to Microsoft Excel 2007 format.static StiWebActionResultStiExportsClass.exportAsExcelXml(StiReport report, StiExcelExportSettings settings, OutputStream stream) Exports report to Microsoft Excel Xml format.static StiWebActionResultStiExportsClass.exportAsJpeg(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to JPEG format.static StiWebActionResultStiExportsClass.exportAsPcx(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to PCX format.static StiWebActionResultStiExportsClass.exportAsPng(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to PNG format.static StiWebActionResultStiExportsClass.exportAsSvg(StiReport report, StiImageExportSettings settings, OutputStream stream) Exports report to Scalable Vector Graphics (SVG) format.static StiWebActionResultStiExportsClass.exportAsSvgz(StiReport report, StiImageExportSettings settings, OutputStream stream) static StiWebActionResultStiExportsClass.exportAsSylk(StiReport report, StiDataExportSettings settings, OutputStream stream) Exports report to Symbolic Link (SYLK) format.static ObjectStiExportsClass.exportReport(StiReport report, StiExportFormat exportFormat, Element settingsObject, boolean saveFileDialog) Exports report to specified format and return the FileResult object.static voidStiExportsClass.exportReport(StiReport report, StiExportFormat exportFormat, Element jsonObject, OutputStream stream) Exports report by the specified format and export settings object to the stream.static StiWebActionResultStiExportsClass.exportReport(StiReport report, StiExportFormat exportFormat, Element jsonObject, OutputStream stream, boolean saveFileDialog) Exports report by the specified format and export settings to the stream or return theStiWebActionResultobject.static ObjectStiExportsClass.exportReport(StiReport report, StiRequiredOptions requestOptions, StiMailProperties emailOptions) Exports report to specified format and return the FileResult object.static StiWebActionResultStiResourcesHelper.get(String contextURL, StiRequestParams requestParams) static StiExportSettingsStiExportsClass.getExportSettings(StiExportFormat exportFormat, Element settingsNode) Get the export settings from the client datastatic StiWebActionResultStiAngularViewerHelper.initViewer(StiHttpServletRequest request, StiHttpServletResponse response) static StiWebActionResultStiExportsClass.saveDocumentFile(StiReport report, Element settingsNode, OutputStream stream) Save report to Document File (MDC, MDZ, MDX)