blob: 2ff3d6d348bd4accff806e6ecf1173fc651f7f6c [file] [log] [blame]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Style (Apache Axis)</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
</head>
<body>
<script type="text/javascript"><!--
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="Style (Apache Axis)";
}
//-->
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar_top">
<!-- -->
</a><a href="#skip-navbar_top" title="Skip navigation links"></a><a name="navbar_top_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Style.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/axis/constants/Scope.Type.html" title="class in org.apache.axis.constants"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../org/apache/axis/constants/Style.Type.html" title="class in org.apache.axis.constants"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/axis/constants/Style.html" target="_top">Frames</a></li>
<li><a href="Style.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">org.apache.axis.constants</div>
<h2 title="Class Style" class="title">Class Style</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="../../../../org/apache/axis/constants/Enum.html" title="class in org.apache.axis.constants">org.apache.axis.constants.Enum</a></li>
<li>
<ul class="inheritance">
<li>org.apache.axis.constants.Style</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/io/Serializable.html?is-external=true" title="class or interface in java.io">Serializable</a></dd>
</dl>
<dl>
<dt>Direct Known Subclasses:</dt>
<dd><a href="../../../../org/apache/axis/enum/Style.html" title="class in org.apache.axis.enum">Style</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="strong">Style</span>
extends <a href="../../../../org/apache/axis/constants/Enum.html" title="class in org.apache.axis.constants">Enum</a></pre>
<div class="block">Description of the different styles
<br>
<b>style=rpc, use=encoded</b><br>
First element of the SOAP body is the
operation. The operation contains
elements describing the parameters, which
are serialized as encoded (possibly multi-ref)
<pre>
&lt;soap:body&gt;
&lt;operation&gt;
&lt;arg1&gt;...&lt;/arg1&gt;
&lt;arg2&gt;...&lt;/arg2&gt;
&lt;/operation&gt;
</pre>
<br>
<b>style=RPC, use=literal</b><br>
First element of the SOAP body is the
operation. The operation contains elements
describing the parameters, which are serialized
as encoded (no multi-ref)\
<pre>
&lt;soap:body&gt;
&lt;operation&gt;
&lt;arg1&gt;...&lt;/arg1&gt;
&lt;arg2&gt;...&lt;/arg2&gt;
&lt;/operation&gt;
</pre>
<br>
<b>style=document, use=literal</b><br>
Elements of the SOAP body are the names of the parameters
(there is no wrapper operation...no multi-ref)
<pre>
&lt;soap:body&gt;
&lt;arg1&gt;...&lt;/arg1&gt;
&lt;arg2&gt;...&lt;/arg2&gt;
</pre>
<br>
<b>style=wrapped</b><br>
Special case of DOCLIT where there is only one parameter
and it has the same qname as the operation. In
such cases, there is no actual type with the name...the
elements are treated as parameters to the operation
<pre>
&lt;soap:body&gt;
&lt;one-arg-same-name-as-operation&gt;
&lt;elemofarg1&gt;...&lt;/elemofarg1&gt;
&lt;elemofarg2&gt;...&lt;/elemofarg2&gt;
</pre>
<br>
<b>style=document, use=encoded</b><br>
There is not an enclosing operation name element, but
the parmeterss are encoded using SOAP encoding
This mode is not (well?) supported by Axis.</div>
<dl><dt><span class="strong">Author:</span></dt>
<dd>Richard Sitze</dd>
<dt><span class="strong">See Also:</span></dt><dd><a href="../../../../serialized-form.html#org.apache.axis.constants.Style">Serialized Form</a></dd></dl>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested_class_summary">
<!-- -->
</a>
<h3>Nested Class Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.Type.html" title="class in org.apache.axis.constants">Style.Type</a></strong></code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_summary">
<!-- -->
</a>
<h3>Field Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#DEFAULT">DEFAULT</a></strong></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#DOCUMENT">DOCUMENT</a></strong></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#DOCUMENT_STR">DOCUMENT_STR</a></strong></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#MESSAGE">MESSAGE</a></strong></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#MESSAGE_STR">MESSAGE_STR</a></strong></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#RPC">RPC</a></strong></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#RPC_STR">RPC_STR</a></strong></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#WRAPPED">WRAPPED</a></strong></code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#WRAPPED_STR">WRAPPED_STR</a></strong></code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="fields_inherited_from_class_org.apache.axis.constants.Enum">
<!-- -->
</a>
<h3>Fields inherited from class&nbsp;org.apache.axis.constants.<a href="../../../../org/apache/axis/constants/Enum.html" title="class in org.apache.axis.constants">Enum</a></h3>
<code><a href="../../../../org/apache/axis/constants/Enum.html#log">log</a>, <a href="../../../../org/apache/axis/constants/Enum.html#name">name</a>, <a href="../../../../org/apache/axis/constants/Enum.html#value">value</a></code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_summary">
<!-- -->
</a>
<h3>Constructor Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier</th>
<th class="colLast" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>protected </code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#Style()">Style</a></strong>()</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method_summary">
<!-- -->
</a>
<h3>Method Summary</h3>
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span>Methods</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#getDefault()">getDefault</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code><a href="../../../../javax/xml/namespace/QName.html" title="class in javax.xml.namespace">QName</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#getProvider()">getProvider</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#getStyle(int)">getStyle</a></strong>(int&nbsp;style)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#getStyle(java.lang.String)">getStyle</a></strong>(<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;style)</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static <a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a></code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#getStyle(java.lang.String,%20org.apache.axis.constants.Style)">getStyle</a></strong>(<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;style,
<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a>&nbsp;dephault)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#getStyles()">getStyles</a></strong>()</code>&nbsp;</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static boolean</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#isValid(java.lang.String)">isValid</a></strong>(<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;style)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><strong><a href="../../../../org/apache/axis/constants/Style.html#size()">size</a></strong>()</code>&nbsp;</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_org.apache.axis.constants.Enum">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;org.apache.axis.constants.<a href="../../../../org/apache/axis/constants/Enum.html" title="class in org.apache.axis.constants">Enum</a></h3>
<code><a href="../../../../org/apache/axis/constants/Enum.html#equals(org.apache.axis.constants.Enum)">equals</a>, <a href="../../../../org/apache/axis/constants/Enum.html#equals(java.lang.Object)">equals</a>, <a href="../../../../org/apache/axis/constants/Enum.html#getName()">getName</a>, <a href="../../../../org/apache/axis/constants/Enum.html#getType()">getType</a>, <a href="../../../../org/apache/axis/constants/Enum.html#getValue()">getValue</a>, <a href="../../../../org/apache/axis/constants/Enum.html#hashCode()">hashCode</a>, <a href="../../../../org/apache/axis/constants/Enum.html#toString()">toString</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
<!-- -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true#clone()" title="class or interface in java.lang">clone</a>, <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true#finalize()" title="class or interface in java.lang">finalize</a>, <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true#getClass()" title="class or interface in java.lang">getClass</a>, <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true#notify()" title="class or interface in java.lang">notify</a>, <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true#notifyAll()" title="class or interface in java.lang">notifyAll</a>, <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true#wait()" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true#wait(long)" title="class or interface in java.lang">wait</a>, <a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/Object.html?is-external=true#wait(long,%20int)" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field_detail">
<!-- -->
</a>
<h3>Field Detail</h3>
<a name="RPC_STR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>RPC_STR</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> RPC_STR</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.apache.axis.constants.Style.RPC_STR">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="DOCUMENT_STR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DOCUMENT_STR</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> DOCUMENT_STR</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.apache.axis.constants.Style.DOCUMENT_STR">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="WRAPPED_STR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>WRAPPED_STR</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> WRAPPED_STR</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.apache.axis.constants.Style.WRAPPED_STR">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="MESSAGE_STR">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MESSAGE_STR</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a> MESSAGE_STR</pre>
<dl><dt><span class="strong">See Also:</span></dt><dd><a href="../../../../constant-values.html#org.apache.axis.constants.Style.MESSAGE_STR">Constant Field Values</a></dd></dl>
</li>
</ul>
<a name="RPC">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>RPC</h4>
<pre>public static final&nbsp;<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a> RPC</pre>
</li>
</ul>
<a name="DOCUMENT">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>DOCUMENT</h4>
<pre>public static final&nbsp;<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a> DOCUMENT</pre>
</li>
</ul>
<a name="WRAPPED">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>WRAPPED</h4>
<pre>public static final&nbsp;<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a> WRAPPED</pre>
</li>
</ul>
<a name="MESSAGE">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>MESSAGE</h4>
<pre>public static final&nbsp;<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a> MESSAGE</pre>
</li>
</ul>
<a name="DEFAULT">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>DEFAULT</h4>
<pre>public static final&nbsp;<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a> DEFAULT</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor_detail">
<!-- -->
</a>
<h3>Constructor Detail</h3>
<a name="Style()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>Style</h4>
<pre>protected&nbsp;Style()</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method_detail">
<!-- -->
</a>
<h3>Method Detail</h3>
<a name="getDefault()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getDefault</h4>
<pre>public static&nbsp;<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a>&nbsp;getDefault()</pre>
</li>
</ul>
<a name="getProvider()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getProvider</h4>
<pre>public final&nbsp;<a href="../../../../javax/xml/namespace/QName.html" title="class in javax.xml.namespace">QName</a>&nbsp;getProvider()</pre>
</li>
</ul>
<a name="getStyle(int)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getStyle</h4>
<pre>public static final&nbsp;<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a>&nbsp;getStyle(int&nbsp;style)</pre>
</li>
</ul>
<a name="getStyle(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getStyle</h4>
<pre>public static final&nbsp;<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a>&nbsp;getStyle(<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;style)</pre>
</li>
</ul>
<a name="getStyle(java.lang.String, org.apache.axis.constants.Style)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getStyle</h4>
<pre>public static final&nbsp;<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a>&nbsp;getStyle(<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;style,
<a href="../../../../org/apache/axis/constants/Style.html" title="class in org.apache.axis.constants">Style</a>&nbsp;dephault)</pre>
</li>
</ul>
<a name="isValid(java.lang.String)">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isValid</h4>
<pre>public static final&nbsp;boolean&nbsp;isValid(<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>&nbsp;style)</pre>
</li>
</ul>
<a name="size()">
<!-- -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>size</h4>
<pre>public static final&nbsp;int&nbsp;size()</pre>
</li>
</ul>
<a name="getStyles()">
<!-- -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>getStyles</h4>
<pre>public static final&nbsp;<a href="http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html?is-external=true" title="class or interface in java.lang">String</a>[]&nbsp;getStyles()</pre>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar_bottom">
<!-- -->
</a><a href="#skip-navbar_bottom" title="Skip navigation links"></a><a name="navbar_bottom_firstrow">
<!-- -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="class-use/Style.html">Use</a></li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../org/apache/axis/constants/Scope.Type.html" title="class in org.apache.axis.constants"><span class="strong">Prev Class</span></a></li>
<li><a href="../../../../org/apache/axis/constants/Style.Type.html" title="class in org.apache.axis.constants"><span class="strong">Next Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?org/apache/axis/constants/Style.html" target="_top">Frames</a></li>
<li><a href="Style.html" target="_top">No Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_bottom");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested_class_summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field_summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field_detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor_detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method_detail">Method</a></li>
</ul>
</div>
<a name="skip-navbar_bottom">
<!-- -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
<p class="legalCopy"><small>Copyright © <a href="http://www.apache.org/">The Apache Software Foundation</a>. All Rights Reserved.</small></p>
</body>
</html>