Compare commits
No commits in common. "master" and "mysqlapi" have entirely different histories.
|
|
@ -0,0 +1,13 @@
|
|||
.DS_Store
|
||||
.idea/
|
||||
*.iml
|
||||
target/
|
||||
2017*
|
||||
.project
|
||||
.classpath
|
||||
.settings/
|
||||
*.log
|
||||
bin/
|
||||
*target/
|
||||
|
||||
/jenkins-exec/logs
|
||||
|
|
@ -1,4 +0,0 @@
|
|||
drop database if exists bookstore;
|
||||
create database bookstore;
|
||||
|
||||
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
drop database if exists bookstore;
|
||||
create database bookstore;
|
||||
use bookstore;
|
||||
create table book(
|
||||
id int(11) not NULL,
|
||||
title VARCHAR(255),
|
||||
author VARCHAR(255),
|
||||
publisher VARCHAR(255),
|
||||
publishYear int(11)
|
||||
)DEFAULT CHARSET=utf8;
|
||||
Insert into book (id,title,author,publisher,publishYear) values
|
||||
(1002,'平凡的世界', '路遥','新世界出版社',2011),
|
||||
(1026,'活着', '余华','东方出版社',2016),
|
||||
(1204,'围城', '钱钟书','人名文学出版社',1991),
|
||||
(1208,'围城', '钱钟书','文艺出版社',2012);
|
||||
|
||||
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
drop database if exists bookstore;
|
||||
create database bookstore;
|
||||
use bookstore;
|
||||
create table book(
|
||||
id int(11) not NULL,
|
||||
title VARCHAR(255),
|
||||
author VARCHAR(255),
|
||||
publisher VARCHAR(255),
|
||||
publishYear int(11)
|
||||
)DEFAULT CHARSET=utf8;
|
||||
Insert into book (id,title,author,publisher,publishYear) values
|
||||
(1002,'平凡的世界', '路遥','新世界出版社',2011),
|
||||
(1026,'活着', '余华','东方出版社',2016),
|
||||
(1204,'围城', '钱钟书','人名文学出版社',1991),
|
||||
(1208,'围城', '钱钟书','文艺出版社',2012),
|
||||
(1004,'平凡的世界', '路遥','文艺出版社',2012),
|
||||
(1010,'人生', '路遥','文艺出版社',2005),
|
||||
(1024,'活着', '余华','作家出版社',2012);
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
drop database if exists bookstore;
|
||||
create database bookstore;
|
||||
use bookstore;
|
||||
create table book(
|
||||
id int(11) not NULL,
|
||||
title VARCHAR(255),
|
||||
author VARCHAR(255),
|
||||
publisher VARCHAR(255),
|
||||
publishYear int(11)
|
||||
)DEFAULT CHARSET=utf8;
|
||||
Insert into book (id,title,author,publisher,publishYear) values
|
||||
(1002,'平凡的世界', '路遥','新世界出版社',2011),
|
||||
(1204,'围城', '钱钟书','人名文学出版社',1991),
|
||||
(1208,'围城', '钱钟书','文艺出版社',2012),
|
||||
(1004,'平凡的世界', '路遥','文艺出版社',2012),
|
||||
(1010,'人生', '路遥','文艺出版社',2005);
|
||||
|
|
@ -1,16 +0,0 @@
|
|||
drop database if exists bookstore;
|
||||
create database bookstore;
|
||||
use bookstore;
|
||||
create table book(
|
||||
id int(11) not NULL,
|
||||
title VARCHAR(255),
|
||||
author VARCHAR(255),
|
||||
publisher VARCHAR(255),
|
||||
publishYear int(11)
|
||||
)DEFAULT CHARSET=utf8;
|
||||
Insert into book (id,title,author,publisher,publishYear) values
|
||||
(1002,'平凡的世界', '路遥','新世界出版社',2011),
|
||||
(1204,'围城', '钱钟书','人名文学出版社',1991),
|
||||
(1208,'围城', '钱钟书','文艺出版社',2012),
|
||||
(1004,'平凡的世界', '路遥','文艺出版社',2012),
|
||||
(1010,'人生', '路遥','文艺出版社',2005);
|
||||
|
|
@ -1,18 +0,0 @@
|
|||
drop database if exists bookstore;
|
||||
create database bookstore;
|
||||
use bookstore;
|
||||
create table step7(
|
||||
id int(11) not NULL,
|
||||
title VARCHAR(255),
|
||||
author VARCHAR(255),
|
||||
publisher VARCHAR(255),
|
||||
publishYear int(11)
|
||||
)DEFAULT CHARSET=utf8;
|
||||
Insert into step7 (id,title,author,publisher,publishYear) values
|
||||
(1002,'平凡的世界', null,'新世界出版社',null),
|
||||
(1208,null, '钱钟书',null,null);
|
||||
create table transformedBook(
|
||||
id int(11),
|
||||
column_name VARCHAR(255),
|
||||
value VARCHAR(255)
|
||||
)DEFAULT CHARSET=utf8;
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" output="target/classes" path="src/main/java">
|
||||
<attributes>
|
||||
<attribute name="optional" value="true"/>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="src" output="target/test-classes" path="src/test/java">
|
||||
<attributes>
|
||||
<attribute name="optional" value="true"/>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="con" path="org.eclipse.m2e.MAVEN2_CLASSPATH_CONTAINER">
|
||||
<attributes>
|
||||
<attribute name="maven.pomderived" value="true"/>
|
||||
</attributes>
|
||||
</classpathentry>
|
||||
<classpathentry kind="output" path="target/classes"/>
|
||||
</classpath>
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>jenkins-client</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.wst.common.project.facet.core.builder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.wst.validation.validationbuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.m2e.core.maven2Builder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jem.workbench.JavaEMFNature</nature>
|
||||
<nature>org.eclipse.wst.common.modulecore.ModuleCoreNature</nature>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
<nature>org.eclipse.m2e.core.maven2Nature</nature>
|
||||
<nature>org.eclipse.wst.common.project.facet.core.nature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
eclipse.preferences.version=1
|
||||
encoding//src/main/java=UTF-8
|
||||
encoding/<project>=UTF-8
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
eclipse.preferences.version=1
|
||||
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||
org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7
|
||||
org.eclipse.jdt.core.compiler.compliance=1.7
|
||||
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||
org.eclipse.jdt.core.compiler.problem.forbiddenReference=warning
|
||||
org.eclipse.jdt.core.compiler.source=1.7
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
activeProfiles=
|
||||
eclipse.preferences.version=1
|
||||
resolveWorkspaceProjects=true
|
||||
version=1
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?><project-modules id="moduleCoreId" project-version="1.5.0">
|
||||
<wb-module deploy-name="jenkins-client">
|
||||
<wb-resource deploy-path="/" source-path="/src/main/java"/>
|
||||
</wb-module>
|
||||
</project-modules>
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<faceted-project>
|
||||
<installed facet="java" version="1.7"/>
|
||||
<installed facet="jst.utility" version="1.0"/>
|
||||
</faceted-project>
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
disabled=06target
|
||||
eclipse.preferences.version=1
|
||||
|
|
@ -0,0 +1,85 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:07 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>所有类</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="bar">所有类</h1>
|
||||
<div class="indexContainer">
|
||||
<ul>
|
||||
<li><a href="com/offbytwo/jenkins/model/Artifact.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Artifact</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">BaseModel</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Build</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildCause.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">BuildCause</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">BuildChangeSet</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">BuildChangeSetAuthor</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">BuildChangeSetItem</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">BuildChangeSetPath</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举" target="classFrame">BuildResult</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">BuildWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/CauseAction.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">CauseAction</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">ComparableVersion</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">ComparableVersion.ListItem</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Computer</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ComputerSet.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">ComputerSet</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">ComputerWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Crumb.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Crumb</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/util/EncodingUtils.html" title="com.offbytwo.jenkins.client.util中的类" target="classFrame">EncodingUtils</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Executable.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Executable</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Executor.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Executor</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ExtractHeader.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">ExtractHeader</a></li>
|
||||
<li><a href="test/FirstTest.html" title="test中的类" target="classFrame">FirstTest</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/FolderJob.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">FolderJob</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">HourMinSec10</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/validator/HttpResponseValidator.html" title="com.offbytwo.jenkins.client.validator中的类" target="classFrame">HttpResponseValidator</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类" target="classFrame">JenkinsHttpClient</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类" target="classFrame">JenkinsServer</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/JenkinsTriggerHelper.html" title="com.offbytwo.jenkins中的类" target="classFrame">JenkinsTriggerHelper</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">JenkinsVersion</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Job</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/JobConfiguration.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">JobConfiguration</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/JobWithDetails.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">JobWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/LabelWithDetails.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">LabelWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">LoadStatistics</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MainView.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">MainView</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">MavenArtifact</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">MavenBuild</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">MavenJob</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenJobWithDetails.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">MavenJobWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenModule.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">MavenModule</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenModuleRecord.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">MavenModuleRecord</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/OfflineCause.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">OfflineCause</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">ParameterDefinitions</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ParametersDefinitionProperty.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">ParametersDefinitionProperty</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Plugin</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">PluginDependency</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/PluginManager.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">PluginManager</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/PreemptiveAuth.html" title="com.offbytwo.jenkins.client中的类" target="classFrame">PreemptiveAuth</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Queue.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Queue</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">QueueItem</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/QueueItemActions.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">QueueItemActions</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">QueueReference</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/QueueTask.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">QueueTask</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">Range</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">Range.Builder</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">Range.FromBuilder</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">Range.ToBuilder</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" title="com.offbytwo.jenkins.client.util中的类" target="classFrame">RequestReleasingInputStream</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">Statis</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">StringParameterDefinition</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestCase.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">TestCase</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestChild.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">TestChild</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestChildReport.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">TestChildReport</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestReport.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">TestReport</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestResult.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">TestResult</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestSuites.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">TestSuites</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/View.html" title="com.offbytwo.jenkins.model中的类" target="classFrame">View</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,85 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:07 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>所有类</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="bar">所有类</h1>
|
||||
<div class="indexContainer">
|
||||
<ul>
|
||||
<li><a href="com/offbytwo/jenkins/model/Artifact.html" title="com.offbytwo.jenkins.model中的类">Artifact</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildCause.html" title="com.offbytwo.jenkins.model中的类">BuildCause</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSet</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetAuthor</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetItem</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetPath</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/CauseAction.html" title="com.offbytwo.jenkins.model中的类">CauseAction</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion.ListItem</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ComputerSet.html" title="com.offbytwo.jenkins.model中的类">ComputerSet</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类">ComputerWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Crumb.html" title="com.offbytwo.jenkins.model中的类">Crumb</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/util/EncodingUtils.html" title="com.offbytwo.jenkins.client.util中的类">EncodingUtils</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Executable.html" title="com.offbytwo.jenkins.model中的类">Executable</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Executor.html" title="com.offbytwo.jenkins.model中的类">Executor</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ExtractHeader.html" title="com.offbytwo.jenkins.model中的类">ExtractHeader</a></li>
|
||||
<li><a href="test/FirstTest.html" title="test中的类">FirstTest</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/FolderJob.html" title="com.offbytwo.jenkins.model中的类">FolderJob</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/validator/HttpResponseValidator.html" title="com.offbytwo.jenkins.client.validator中的类">HttpResponseValidator</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/JenkinsTriggerHelper.html" title="com.offbytwo.jenkins中的类">JenkinsTriggerHelper</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/JobConfiguration.html" title="com.offbytwo.jenkins.model中的类">JobConfiguration</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/JobWithDetails.html" title="com.offbytwo.jenkins.model中的类">JobWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/LabelWithDetails.html" title="com.offbytwo.jenkins.model中的类">LabelWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类">LoadStatistics</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MainView.html" title="com.offbytwo.jenkins.model中的类">MainView</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类">MavenJob</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenJobWithDetails.html" title="com.offbytwo.jenkins.model中的类">MavenJobWithDetails</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenModule.html" title="com.offbytwo.jenkins.model中的类">MavenModule</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/MavenModuleRecord.html" title="com.offbytwo.jenkins.model中的类">MavenModuleRecord</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/OfflineCause.html" title="com.offbytwo.jenkins.model中的类">OfflineCause</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类">ParameterDefinitions</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/ParametersDefinitionProperty.html" title="com.offbytwo.jenkins.model中的类">ParametersDefinitionProperty</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类">Plugin</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类">PluginDependency</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/PluginManager.html" title="com.offbytwo.jenkins.model中的类">PluginManager</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/PreemptiveAuth.html" title="com.offbytwo.jenkins.client中的类">PreemptiveAuth</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Queue.html" title="com.offbytwo.jenkins.model中的类">Queue</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类">QueueItem</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/QueueItemActions.html" title="com.offbytwo.jenkins.model中的类">QueueItemActions</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/QueueTask.html" title="com.offbytwo.jenkins.model中的类">QueueTask</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">Range.Builder</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.FromBuilder</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.ToBuilder</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" title="com.offbytwo.jenkins.client.util中的类">RequestReleasingInputStream</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类">StringParameterDefinition</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestCase.html" title="com.offbytwo.jenkins.model中的类">TestCase</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestChild.html" title="com.offbytwo.jenkins.model中的类">TestChild</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestChildReport.html" title="com.offbytwo.jenkins.model中的类">TestChildReport</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestReport.html" title="com.offbytwo.jenkins.model中的类">TestReport</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestResult.html" title="com.offbytwo.jenkins.model中的类">TestResult</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/TestSuites.html" title="com.offbytwo.jenkins.model中的类">TestSuites</a></li>
|
||||
<li><a href="com/offbytwo/jenkins/model/View.html" title="com.offbytwo.jenkins.model中的类">View</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,382 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>JenkinsTriggerHelper</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="JenkinsTriggerHelper";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JenkinsTriggerHelper.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/offbytwo/jenkins/JenkinsTriggerHelper.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsTriggerHelper.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins</div>
|
||||
<h2 title="类 JenkinsTriggerHelper" class="title">类 JenkinsTriggerHelper</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.JenkinsTriggerHelper</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">JenkinsTriggerHelper</span>
|
||||
extends java.lang.Object</pre>
|
||||
<div class="block">collection of convenient methods which use methods from <a href="../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类"><code>JenkinsServer</code></a>
|
||||
etc.</div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html#JenkinsTriggerHelper(com.offbytwo.jenkins.JenkinsServer)">JenkinsTriggerHelper</a></strong>(<a href="../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a> server)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html#JenkinsTriggerHelper(com.offbytwo.jenkins.JenkinsServer, java.lang.Long)">JenkinsTriggerHelper</a></strong>(<a href="../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a> server,
|
||||
java.lang.Long retryInterval)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html#triggerJobAndWaitUntilFinished(java.lang.String)">triggerJobAndWaitUntilFinished</a></strong>(java.lang.String jobName)</code>
|
||||
<div class="block">This method will trigger a build of the given job and will wait until the
|
||||
builds is ended or if the build has been cancelled.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html#triggerJobAndWaitUntilFinished(java.lang.String, boolean)">triggerJobAndWaitUntilFinished</a></strong>(java.lang.String jobName,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">This method will trigger a build of the given job and will wait until the
|
||||
builds is ended or if the build has been cancelled.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html#triggerJobAndWaitUntilFinished(java.lang.String, java.util.Map)">triggerJobAndWaitUntilFinished</a></strong>(java.lang.String jobName,
|
||||
java.util.Map<java.lang.String,java.lang.String> params)</code>
|
||||
<div class="block">This method will trigger a build of the given job and will wait until the
|
||||
builds is ended or if the build has been cancelled.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html#triggerJobAndWaitUntilFinished(java.lang.String, java.util.Map, boolean)">triggerJobAndWaitUntilFinished</a></strong>(java.lang.String jobName,
|
||||
java.util.Map<java.lang.String,java.lang.String> params,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">This method will trigger a build of the given job and will wait until the
|
||||
builds is ended or if the build has been cancelled.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="JenkinsTriggerHelper(com.offbytwo.jenkins.JenkinsServer)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>JenkinsTriggerHelper</h4>
|
||||
<pre>public JenkinsTriggerHelper(<a href="../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a> server)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="JenkinsTriggerHelper(com.offbytwo.jenkins.JenkinsServer, java.lang.Long)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>JenkinsTriggerHelper</h4>
|
||||
<pre>public JenkinsTriggerHelper(<a href="../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a> server,
|
||||
java.lang.Long retryInterval)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="triggerJobAndWaitUntilFinished(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>triggerJobAndWaitUntilFinished</h4>
|
||||
<pre>public <a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a> triggerJobAndWaitUntilFinished(java.lang.String jobName)
|
||||
throws java.io.IOException,
|
||||
java.lang.InterruptedException</pre>
|
||||
<div class="block">This method will trigger a build of the given job and will wait until the
|
||||
builds is ended or if the build has been cancelled.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>jobName</code> - The name of the job which should be triggered.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>In case of an cancelled job you will get
|
||||
<a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getResult()"><code>BuildWithDetails.getResult()</code></a>
|
||||
<a href="../../../com/offbytwo/jenkins/model/BuildResult.html#CANCELLED"><code>BuildResult.CANCELLED</code></a>. So you have to check first if the
|
||||
build result is <code>CANCELLED</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd>
|
||||
<dd><code>java.lang.InterruptedException</code> - In case of interrupts.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="triggerJobAndWaitUntilFinished(java.lang.String, java.util.Map)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>triggerJobAndWaitUntilFinished</h4>
|
||||
<pre>public <a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a> triggerJobAndWaitUntilFinished(java.lang.String jobName,
|
||||
java.util.Map<java.lang.String,java.lang.String> params)
|
||||
throws java.io.IOException,
|
||||
java.lang.InterruptedException</pre>
|
||||
<div class="block">This method will trigger a build of the given job and will wait until the
|
||||
builds is ended or if the build has been cancelled.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>jobName</code> - The name of the job which should be triggered.</dd><dd><code>params</code> - the job parameters</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>In case of an cancelled job you will get
|
||||
<a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getResult()"><code>BuildWithDetails.getResult()</code></a>
|
||||
<a href="../../../com/offbytwo/jenkins/model/BuildResult.html#CANCELLED"><code>BuildResult.CANCELLED</code></a>. So you have to check first if the
|
||||
build result is <code>CANCELLED</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd>
|
||||
<dd><code>java.lang.InterruptedException</code> - In case of interrupts.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="triggerJobAndWaitUntilFinished(java.lang.String, java.util.Map, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>triggerJobAndWaitUntilFinished</h4>
|
||||
<pre>public <a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a> triggerJobAndWaitUntilFinished(java.lang.String jobName,
|
||||
java.util.Map<java.lang.String,java.lang.String> params,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException,
|
||||
java.lang.InterruptedException</pre>
|
||||
<div class="block">This method will trigger a build of the given job and will wait until the
|
||||
builds is ended or if the build has been cancelled.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>jobName</code> - The name of the job which should be triggered.</dd><dd><code>params</code> - the job parameters</dd><dd><code>crumbFlag</code> - set to <code>true</code> or <code>false</code>.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>In case of an cancelled job you will get
|
||||
<a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getResult()"><code>BuildWithDetails.getResult()</code></a>
|
||||
<a href="../../../com/offbytwo/jenkins/model/BuildResult.html#CANCELLED"><code>BuildResult.CANCELLED</code></a>. So you have to check first if the
|
||||
build result is <code>CANCELLED</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd>
|
||||
<dd><code>java.lang.InterruptedException</code> - In case of interrupts.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="triggerJobAndWaitUntilFinished(java.lang.String, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>triggerJobAndWaitUntilFinished</h4>
|
||||
<pre>public <a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a> triggerJobAndWaitUntilFinished(java.lang.String jobName,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException,
|
||||
java.lang.InterruptedException</pre>
|
||||
<div class="block">This method will trigger a build of the given job and will wait until the
|
||||
builds is ended or if the build has been cancelled.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>jobName</code> - The name of the job which should be triggered.</dd><dd><code>crumbFlag</code> - set to <code>true</code> or <code>false</code>.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>In case of an cancelled job you will get
|
||||
<a href="../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getResult()"><code>BuildWithDetails.getResult()</code></a>
|
||||
<a href="../../../com/offbytwo/jenkins/model/BuildResult.html#CANCELLED"><code>BuildResult.CANCELLED</code></a>. So you have to check first if the
|
||||
build result is <code>CANCELLED</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd>
|
||||
<dd><code>java.lang.InterruptedException</code> - In case of interrupts.</dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JenkinsTriggerHelper.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../index.html?com/offbytwo/jenkins/JenkinsTriggerHelper.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsTriggerHelper.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,158 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:07 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.JenkinsServer的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.JenkinsServer\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/class-use/JenkinsServer.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsServer.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.JenkinsServer 的使用" class="title">类 com.offbytwo.jenkins.JenkinsServer<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins">com.offbytwo.jenkins</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../com/offbytwo/jenkins/package-summary.html">com.offbytwo.jenkins</a>中<a href="../../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表构造器和解释">
|
||||
<caption><span>参数类型为<a href="../../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a>的<a href="../../../../com/offbytwo/jenkins/package-summary.html">com.offbytwo.jenkins</a>中的构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html#JenkinsTriggerHelper(com.offbytwo.jenkins.JenkinsServer)">JenkinsTriggerHelper</a></strong>(<a href="../../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a> server)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html#JenkinsTriggerHelper(com.offbytwo.jenkins.JenkinsServer, java.lang.Long)">JenkinsTriggerHelper</a></strong>(<a href="../../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">JenkinsServer</a> server,
|
||||
java.lang.Long retryInterval)</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/JenkinsServer.html" title="com.offbytwo.jenkins中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/class-use/JenkinsServer.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsServer.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:07 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.JenkinsTriggerHelper的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.JenkinsTriggerHelper\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html" title="com.offbytwo.jenkins中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/class-use/JenkinsTriggerHelper.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsTriggerHelper.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.JenkinsTriggerHelper 的使用" class="title">类 com.offbytwo.jenkins.JenkinsTriggerHelper<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">没有com.offbytwo.jenkins.JenkinsTriggerHelper的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/JenkinsTriggerHelper.html" title="com.offbytwo.jenkins中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/class-use/JenkinsTriggerHelper.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsTriggerHelper.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,627 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>JenkinsHttpClient</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="JenkinsHttpClient";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JenkinsHttpClient.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/PreemptiveAuth.html" title="com.offbytwo.jenkins.client中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/JenkinsHttpClient.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsHttpClient.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.client</div>
|
||||
<h2 title="类 JenkinsHttpClient" class="title">类 JenkinsHttpClient</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.client.JenkinsHttpClient</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">JenkinsHttpClient</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#JenkinsHttpClient(java.net.URI)">JenkinsHttpClient</a></strong>(java.net.URI uri)</code>
|
||||
<div class="block">Create an unauthenticated Jenkins HTTP client</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#JenkinsHttpClient(java.net.URI, org.apache.http.impl.client.CloseableHttpClient)">JenkinsHttpClient</a></strong>(java.net.URI uri,
|
||||
org.apache.http.impl.client.CloseableHttpClient client)</code>
|
||||
<div class="block">Create an unauthenticated Jenkins HTTP client</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#JenkinsHttpClient(java.net.URI, org.apache.http.impl.client.HttpClientBuilder)">JenkinsHttpClient</a></strong>(java.net.URI uri,
|
||||
org.apache.http.impl.client.HttpClientBuilder builder)</code>
|
||||
<div class="block">Create an unauthenticated Jenkins HTTP client</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#JenkinsHttpClient(java.net.URI, java.lang.String, java.lang.String)">JenkinsHttpClient</a></strong>(java.net.URI uri,
|
||||
java.lang.String username,
|
||||
java.lang.String password)</code>
|
||||
<div class="block">Create an authenticated Jenkins HTTP client</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#get(java.lang.String)">get</a></strong>(java.lang.String path)</code>
|
||||
<div class="block">Perform a GET request and parse the response and return a simple string
|
||||
of the content</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><T extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a>> <br>T</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#get(java.lang.String, java.lang.Class)">get</a></strong>(java.lang.String path,
|
||||
java.lang.Class<T> cls)</code>
|
||||
<div class="block">Perform a GET request and parse the response to the given class</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.io.InputStream</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#getFile(java.net.URI)">getFile</a></strong>(java.net.URI path)</code>
|
||||
<div class="block">Perform a GET request and return the response as InputStream</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#getJenkinsVersion()">getJenkinsVersion</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><T extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a>> <br>T</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#getQuietly(java.lang.String, java.lang.Class)">getQuietly</a></strong>(java.lang.String path,
|
||||
java.lang.Class<T> cls)</code>
|
||||
<div class="block">Perform a GET request and parse the response to the given class, logging
|
||||
any IOException that is thrown rather than propagating it.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#post_form(java.lang.String, java.util.Map, boolean)">post_form</a></strong>(java.lang.String path,
|
||||
java.util.Map<java.lang.String,java.lang.String> data,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">Perform a POST request using form url encoding.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#post_text(java.lang.String, java.lang.String, boolean)">post_text</a></strong>(java.lang.String path,
|
||||
java.lang.String textData,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">Post a text entity to the given URL using the default content type</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#post_text(java.lang.String, java.lang.String, org.apache.http.entity.ContentType, boolean)">post_text</a></strong>(java.lang.String path,
|
||||
java.lang.String textData,
|
||||
org.apache.http.entity.ContentType contentType,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">Post a text entity to the given URL with the given content type</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#post_xml(java.lang.String, java.lang.String)">post_xml</a></strong>(java.lang.String path,
|
||||
java.lang.String xml_data)</code>
|
||||
<div class="block">Perform a POST request of XML (instead of using json mapper) and return a
|
||||
string rendering of the response entity.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#post_xml(java.lang.String, java.lang.String, boolean)">post_xml</a></strong>(java.lang.String path,
|
||||
java.lang.String xml_data,
|
||||
boolean crumbFlag)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#post(java.lang.String)">post</a></strong>(java.lang.String path)</code>
|
||||
<div class="block">Perform POST request that takes no parameters and returns no response</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#post(java.lang.String, boolean)">post</a></strong>(java.lang.String path,
|
||||
boolean crumbFlag)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><R extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a>,D> <br>R</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#post(java.lang.String, D, java.lang.Class)">post</a></strong>(java.lang.String path,
|
||||
D data,
|
||||
java.lang.Class<R> cls)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><R extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a>,D> <br>R</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html#post(java.lang.String, D, java.lang.Class, boolean)">post</a></strong>(java.lang.String path,
|
||||
D data,
|
||||
java.lang.Class<R> cls,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">Perform a POST request and parse the response to the given class</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="JenkinsHttpClient(java.net.URI, org.apache.http.impl.client.CloseableHttpClient)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>JenkinsHttpClient</h4>
|
||||
<pre>public JenkinsHttpClient(java.net.URI uri,
|
||||
org.apache.http.impl.client.CloseableHttpClient client)</pre>
|
||||
<div class="block">Create an unauthenticated Jenkins HTTP client</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>uri</code> - Location of the jenkins server (ex. http://localhost:8080)</dd><dd><code>client</code> - Configured CloseableHttpClient to be used</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="JenkinsHttpClient(java.net.URI, org.apache.http.impl.client.HttpClientBuilder)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>JenkinsHttpClient</h4>
|
||||
<pre>public JenkinsHttpClient(java.net.URI uri,
|
||||
org.apache.http.impl.client.HttpClientBuilder builder)</pre>
|
||||
<div class="block">Create an unauthenticated Jenkins HTTP client</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>uri</code> - Location of the jenkins server (ex. http://localhost:8080)</dd><dd><code>builder</code> - Configured HttpClientBuilder to be used</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="JenkinsHttpClient(java.net.URI)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>JenkinsHttpClient</h4>
|
||||
<pre>public JenkinsHttpClient(java.net.URI uri)</pre>
|
||||
<div class="block">Create an unauthenticated Jenkins HTTP client</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>uri</code> - Location of the jenkins server (ex. http://localhost:8080)</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="JenkinsHttpClient(java.net.URI, java.lang.String, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>JenkinsHttpClient</h4>
|
||||
<pre>public JenkinsHttpClient(java.net.URI uri,
|
||||
java.lang.String username,
|
||||
java.lang.String password)</pre>
|
||||
<div class="block">Create an authenticated Jenkins HTTP client</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>uri</code> - Location of the jenkins server (ex. http://localhost:8080)</dd><dd><code>username</code> - Username to use when connecting</dd><dd><code>password</code> - Password or auth token to use when connecting</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="get(java.lang.String, java.lang.Class)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>get</h4>
|
||||
<pre>public <T extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a>> T get(java.lang.String path,
|
||||
java.lang.Class<T> cls)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Perform a GET request and parse the response to the given class</div>
|
||||
<dl><dt><span class="strong">类型参数:</span></dt><dd><code>T</code> - type of the response</dd><dt><span class="strong">参数:</span></dt><dd><code>path</code> - path to request, can be relative or absolute</dd><dd><code>cls</code> - class of the response</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>an instance of the supplied class</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="get(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>get</h4>
|
||||
<pre>public java.lang.String get(java.lang.String path)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Perform a GET request and parse the response and return a simple string
|
||||
of the content</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>path</code> - path to request, can be relative or absolute</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>the entity text</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getQuietly(java.lang.String, java.lang.Class)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getQuietly</h4>
|
||||
<pre>public <T extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a>> T getQuietly(java.lang.String path,
|
||||
java.lang.Class<T> cls)</pre>
|
||||
<div class="block">Perform a GET request and parse the response to the given class, logging
|
||||
any IOException that is thrown rather than propagating it.</div>
|
||||
<dl><dt><span class="strong">类型参数:</span></dt><dd><code>T</code> - type of the response</dd><dt><span class="strong">参数:</span></dt><dd><code>path</code> - path to request, can be relative or absolute</dd><dd><code>cls</code> - class of the response</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>an instance of the supplied class</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getFile(java.net.URI)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getFile</h4>
|
||||
<pre>public java.io.InputStream getFile(java.net.URI path)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Perform a GET request and return the response as InputStream</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>path</code> - path to request, can be relative or absolute</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>the response stream</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="post(java.lang.String,java.lang.Object,java.lang.Class)">
|
||||
<!-- -->
|
||||
</a><a name="post(java.lang.String, D, java.lang.Class)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>post</h4>
|
||||
<pre>public <R extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a>,D> R post(java.lang.String path,
|
||||
D data,
|
||||
java.lang.Class<R> cls)
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="post(java.lang.String,java.lang.Object,java.lang.Class,boolean)">
|
||||
<!-- -->
|
||||
</a><a name="post(java.lang.String, D, java.lang.Class, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>post</h4>
|
||||
<pre>public <R extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a>,D> R post(java.lang.String path,
|
||||
D data,
|
||||
java.lang.Class<R> cls,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Perform a POST request and parse the response to the given class</div>
|
||||
<dl><dt><span class="strong">类型参数:</span></dt><dd><code>R</code> - type of the response</dd><dd><code>D</code> - type of the data</dd><dt><span class="strong">参数:</span></dt><dd><code>path</code> - path to request, can be relative or absolute</dd><dd><code>data</code> - data to post</dd><dd><code>cls</code> - class of the response</dd><dd><code>crumbFlag</code> - true / false.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>an instance of the supplied class</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="post_form(java.lang.String, java.util.Map, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>post_form</h4>
|
||||
<pre>public void post_form(java.lang.String path,
|
||||
java.util.Map<java.lang.String,java.lang.String> data,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Perform a POST request using form url encoding.
|
||||
|
||||
This method was added for the purposes of creating folders, but may be
|
||||
useful for other API calls as well.
|
||||
|
||||
Unlike post and post_xml, the path is *not* modified by adding
|
||||
"/api/json". Additionally, the params in data are provided as both
|
||||
request parameters including a json parameter, *and* in the
|
||||
JSON-formatted StringEntity, because this is what the folder creation
|
||||
call required. It is unclear if any other jenkins APIs operate in this
|
||||
fashion.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>path</code> - path to request, can be relative or absolute</dd><dd><code>data</code> - data to post</dd><dd><code>crumbFlag</code> - true / false.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="post_xml(java.lang.String, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>post_xml</h4>
|
||||
<pre>public java.lang.String post_xml(java.lang.String path,
|
||||
java.lang.String xml_data)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Perform a POST request of XML (instead of using json mapper) and return a
|
||||
string rendering of the response entity.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>path</code> - path to request, can be relative or absolute</dd><dd><code>xml_data</code> - data data to post</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>A string containing the xml response (if present)</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="post_xml(java.lang.String, java.lang.String, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>post_xml</h4>
|
||||
<pre>public java.lang.String post_xml(java.lang.String path,
|
||||
java.lang.String xml_data,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="post_text(java.lang.String, java.lang.String, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>post_text</h4>
|
||||
<pre>public java.lang.String post_text(java.lang.String path,
|
||||
java.lang.String textData,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Post a text entity to the given URL using the default content type</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>path</code> - The path.</dd><dd><code>textData</code> - data.</dd><dd><code>crumbFlag</code> - true/false.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>resulting response</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="post_text(java.lang.String, java.lang.String, org.apache.http.entity.ContentType, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>post_text</h4>
|
||||
<pre>public java.lang.String post_text(java.lang.String path,
|
||||
java.lang.String textData,
|
||||
org.apache.http.entity.ContentType contentType,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Post a text entity to the given URL with the given content type</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>path</code> - The path.</dd><dd><code>textData</code> - The data.</dd><dd><code>contentType</code> - <code>ContentType</code></dd><dd><code>crumbFlag</code> - true or false.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>resulting response</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="post(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>post</h4>
|
||||
<pre>public void post(java.lang.String path)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Perform POST request that takes no parameters and returns no response</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>path</code> - path to request</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="post(java.lang.String, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>post</h4>
|
||||
<pre>public void post(java.lang.String path,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getJenkinsVersion()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>getJenkinsVersion</h4>
|
||||
<pre>public java.lang.String getJenkinsVersion()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>the version string.</dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JenkinsHttpClient.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/PreemptiveAuth.html" title="com.offbytwo.jenkins.client中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/JenkinsHttpClient.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsHttpClient.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,272 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>PreemptiveAuth</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="PreemptiveAuth";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/PreemptiveAuth.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/PreemptiveAuth.html" target="_top">框架</a></li>
|
||||
<li><a href="PreemptiveAuth.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.client</div>
|
||||
<h2 title="类 PreemptiveAuth" class="title">类 PreemptiveAuth</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.client.PreemptiveAuth</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>所有已实现的接口:</dt>
|
||||
<dd>org.apache.http.HttpRequestInterceptor</dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">PreemptiveAuth</span>
|
||||
extends java.lang.Object
|
||||
implements org.apache.http.HttpRequestInterceptor</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/client/PreemptiveAuth.html#PreemptiveAuth()">PreemptiveAuth</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/client/PreemptiveAuth.html#process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext)">process</a></strong>(org.apache.http.HttpRequest request,
|
||||
org.apache.http.protocol.HttpContext context)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="PreemptiveAuth()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>PreemptiveAuth</h4>
|
||||
<pre>public PreemptiveAuth()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="process(org.apache.http.HttpRequest, org.apache.http.protocol.HttpContext)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>process</h4>
|
||||
<pre>public void process(org.apache.http.HttpRequest request,
|
||||
org.apache.http.protocol.HttpContext context)
|
||||
throws org.apache.http.HttpException,
|
||||
java.io.IOException</pre>
|
||||
<dl>
|
||||
<dt><strong>指定者:</strong></dt>
|
||||
<dd><code>process</code> 在接口中 <code>org.apache.http.HttpRequestInterceptor</code></dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>org.apache.http.HttpException</code></dd>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/PreemptiveAuth.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/PreemptiveAuth.html" target="_top">框架</a></li>
|
||||
<li><a href="PreemptiveAuth.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,191 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.client.JenkinsHttpClient的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.client.JenkinsHttpClient\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/class-use/JenkinsHttpClient.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsHttpClient.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.client.JenkinsHttpClient 的使用" class="title">类 com.offbytwo.jenkins.client.JenkinsHttpClient<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins">com.offbytwo.jenkins</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.model">com.offbytwo.jenkins.model</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/package-summary.html">com.offbytwo.jenkins</a>中<a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表构造器和解释">
|
||||
<caption><span>参数类型为<a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a>的<a href="../../../../../com/offbytwo/jenkins/package-summary.html">com.offbytwo.jenkins</a>中的构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colLast"><code><strong><a href="../../../../../com/offbytwo/jenkins/JenkinsServer.html#JenkinsServer(com.offbytwo.jenkins.client.JenkinsHttpClient)">JenkinsServer</a></strong>(<a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a> client)</code>
|
||||
<div class="block">Create a new Jenkins server directly from an HTTP client (ADVANCED)</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.model">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/model/package-summary.html">com.offbytwo.jenkins.model</a>中<a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>返回<a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a>的<a href="../../../../../com/offbytwo/jenkins/model/package-summary.html">com.offbytwo.jenkins.model</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a></code></td>
|
||||
<td class="colLast"><span class="strong">BaseModel.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>参数类型为<a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a>的<a href="../../../../../com/offbytwo/jenkins/model/package-summary.html">com.offbytwo.jenkins.model</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><span class="strong">BaseModel.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></strong>(<a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a> client)</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/class-use/JenkinsHttpClient.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsHttpClient.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.client.PreemptiveAuth的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.client.PreemptiveAuth\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/PreemptiveAuth.html" title="com.offbytwo.jenkins.client中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/class-use/PreemptiveAuth.html" target="_top">框架</a></li>
|
||||
<li><a href="PreemptiveAuth.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.client.PreemptiveAuth 的使用" class="title">类 com.offbytwo.jenkins.client.PreemptiveAuth<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">没有com.offbytwo.jenkins.client.PreemptiveAuth的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/PreemptiveAuth.html" title="com.offbytwo.jenkins.client中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/class-use/PreemptiveAuth.html" target="_top">框架</a></li>
|
||||
<li><a href="PreemptiveAuth.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.client</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="bar"><a href="../../../../com/offbytwo/jenkins/client/package-summary.html" target="classFrame">com.offbytwo.jenkins.client</a></h1>
|
||||
<div class="indexContainer">
|
||||
<h2 title="类">类</h2>
|
||||
<ul title="类">
|
||||
<li><a href="JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类" target="classFrame">JenkinsHttpClient</a></li>
|
||||
<li><a href="PreemptiveAuth.html" title="com.offbytwo.jenkins.client中的类" target="classFrame">PreemptiveAuth</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,138 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.client</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="com.offbytwo.jenkins.client";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li class="navBarCell1Rev">程序包</li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/package-summary.html">上一个程序包</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/util/package-summary.html">下一个程序包</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="程序包" class="title">程序包 com.offbytwo.jenkins.client</h1>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="类概要表, 列表类和解释">
|
||||
<caption><span>类概要</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">类</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="../../../../com/offbytwo/jenkins/client/PreemptiveAuth.html" title="com.offbytwo.jenkins.client中的类">PreemptiveAuth</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li class="navBarCell1Rev">程序包</li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/package-summary.html">上一个程序包</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/util/package-summary.html">下一个程序包</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,130 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.client 类分层结构</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="com.offbytwo.jenkins.client \u7C7B\u5206\u5C42\u7ED3\u6784";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/package-tree.html">上一个</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/util/package-tree.html">下一个</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 class="title">程序包com.offbytwo.jenkins.client的分层结构</h1>
|
||||
<span class="strong">程序包分层结构:</span>
|
||||
<ul class="horizontal">
|
||||
<li><a href="../../../../overview-tree.html">所有程序包</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<h2 title="类分层结构">类分层结构</h2>
|
||||
<ul>
|
||||
<li type="circle">java.lang.Object
|
||||
<ul>
|
||||
<li type="circle">com.offbytwo.jenkins.client.<a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类"><span class="strong">JenkinsHttpClient</span></a></li>
|
||||
<li type="circle">com.offbytwo.jenkins.client.<a href="../../../../com/offbytwo/jenkins/client/PreemptiveAuth.html" title="com.offbytwo.jenkins.client中的类"><span class="strong">PreemptiveAuth</span></a> (implements org.apache.http.HttpRequestInterceptor)</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/package-tree.html">上一个</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/util/package-tree.html">下一个</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,168 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:07 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>程序包 com.offbytwo.jenkins.client的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7A0B\u5E8F\u5305 com.offbytwo.jenkins.client\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="程序包 com.offbytwo.jenkins.client 的使用" class="title">程序包 com.offbytwo.jenkins.client<br>的使用</h1>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../com/offbytwo/jenkins/client/package-summary.html">com.offbytwo.jenkins.client</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins">com.offbytwo.jenkins</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.model">com.offbytwo.jenkins.model</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins">
|
||||
<!-- -->
|
||||
</a>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表类和解释">
|
||||
<caption><span><a href="../../../../com/offbytwo/jenkins/package-summary.html">com.offbytwo.jenkins</a>使用的<a href="../../../../com/offbytwo/jenkins/client/package-summary.html">com.offbytwo.jenkins.client</a>中的类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/client/class-use/JenkinsHttpClient.html#com.offbytwo.jenkins">JenkinsHttpClient</a> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.model">
|
||||
<!-- -->
|
||||
</a>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表类和解释">
|
||||
<caption><span><a href="../../../../com/offbytwo/jenkins/model/package-summary.html">com.offbytwo.jenkins.model</a>使用的<a href="../../../../com/offbytwo/jenkins/client/package-summary.html">com.offbytwo.jenkins.client</a>中的类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/client/class-use/JenkinsHttpClient.html#com.offbytwo.jenkins.model">JenkinsHttpClient</a> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/client/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,236 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>EncodingUtils</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="EncodingUtils";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/EncodingUtils.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" title="com.offbytwo.jenkins.client.util中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/EncodingUtils.html" target="_top">框架</a></li>
|
||||
<li><a href="EncodingUtils.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.client.util</div>
|
||||
<h2 title="类 EncodingUtils" class="title">类 EncodingUtils</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.client.util.EncodingUtils</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public final class <span class="strong">EncodingUtils</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../../com/offbytwo/jenkins/client/util/EncodingUtils.html#encode(java.lang.String)">encode</a></strong>(java.lang.String pathPart)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>static java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../../com/offbytwo/jenkins/client/util/EncodingUtils.html#encodeParam(java.lang.String)">encodeParam</a></strong>(java.lang.String pathPart)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="encode(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>encode</h4>
|
||||
<pre>public static java.lang.String encode(java.lang.String pathPart)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="encodeParam(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>encodeParam</h4>
|
||||
<pre>public static java.lang.String encodeParam(java.lang.String pathPart)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/EncodingUtils.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" title="com.offbytwo.jenkins.client.util中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/EncodingUtils.html" target="_top">框架</a></li>
|
||||
<li><a href="EncodingUtils.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,306 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>RequestReleasingInputStream</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="RequestReleasingInputStream";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/RequestReleasingInputStream.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/util/EncodingUtils.html" title="com.offbytwo.jenkins.client.util中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" target="_top">框架</a></li>
|
||||
<li><a href="RequestReleasingInputStream.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.client.util</div>
|
||||
<h2 title="类 RequestReleasingInputStream" class="title">类 RequestReleasingInputStream</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>java.io.InputStream</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>java.io.FilterInputStream</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.client.util.RequestReleasingInputStream</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>所有已实现的接口:</dt>
|
||||
<dd>java.io.Closeable, java.lang.AutoCloseable</dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">RequestReleasingInputStream</span>
|
||||
extends java.io.FilterInputStream</pre>
|
||||
<div class="block">Releases the http request method if it is closed</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../../com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html#RequestReleasingInputStream(java.io.InputStream, org.apache.http.client.methods.HttpRequestBase)">RequestReleasingInputStream</a></strong>(java.io.InputStream in,
|
||||
org.apache.http.client.methods.HttpRequestBase httpRequestBase)</code>
|
||||
<div class="block">Creates a <code>FilterInputStream</code> by assigning the argument
|
||||
<code>in</code> to the field <code>this.in</code> so as to remember it
|
||||
for later use.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../../com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html#close()">close</a></strong>()</code>
|
||||
<div class="block">Closes this input stream and releases any system resources associated
|
||||
with the stream.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.io.FilterInputStream">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.io.FilterInputStream</h3>
|
||||
<code>available, mark, markSupported, read, read, read, reset, skip</code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="RequestReleasingInputStream(java.io.InputStream, org.apache.http.client.methods.HttpRequestBase)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>RequestReleasingInputStream</h4>
|
||||
<pre>public RequestReleasingInputStream(java.io.InputStream in,
|
||||
org.apache.http.client.methods.HttpRequestBase httpRequestBase)</pre>
|
||||
<div class="block">Creates a <code>FilterInputStream</code> by assigning the argument
|
||||
<code>in</code> to the field <code>this.in</code> so as to remember it
|
||||
for later use.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>in</code> - the underlying input stream, or <code>null</code> if this
|
||||
instance is to be created without an underlying stream.</dd><dd><code>httpRequestBase</code> - The request object that should be released if the stream
|
||||
closed</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="close()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>close</h4>
|
||||
<pre>public void close()
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Closes this input stream and releases any system resources associated
|
||||
with the stream. This method simply performs <code>in.close()</code>.</div>
|
||||
<dl>
|
||||
<dt><strong>指定者:</strong></dt>
|
||||
<dd><code>close</code> 在接口中 <code>java.io.Closeable</code></dd>
|
||||
<dt><strong>指定者:</strong></dt>
|
||||
<dd><code>close</code> 在接口中 <code>java.lang.AutoCloseable</code></dd>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>close</code> 在类中 <code>java.io.FilterInputStream</code></dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - if an I/O error occurs.</dd><dt><span class="strong">另请参阅:</span></dt><dd><code>FilterInputStream.in</code></dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/RequestReleasingInputStream.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/util/EncodingUtils.html" title="com.offbytwo.jenkins.client.util中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" target="_top">框架</a></li>
|
||||
<li><a href="RequestReleasingInputStream.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.client.util.EncodingUtils的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.client.util.EncodingUtils\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../../com/offbytwo/jenkins/client/util/EncodingUtils.html" title="com.offbytwo.jenkins.client.util中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../../index.html?com/offbytwo/jenkins/client/util/class-use/EncodingUtils.html" target="_top">框架</a></li>
|
||||
<li><a href="EncodingUtils.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.client.util.EncodingUtils 的使用" class="title">类 com.offbytwo.jenkins.client.util.EncodingUtils<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">没有com.offbytwo.jenkins.client.util.EncodingUtils的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../../com/offbytwo/jenkins/client/util/EncodingUtils.html" title="com.offbytwo.jenkins.client.util中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../../index.html?com/offbytwo/jenkins/client/util/class-use/EncodingUtils.html" target="_top">框架</a></li>
|
||||
<li><a href="EncodingUtils.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.client.util.RequestReleasingInputStream的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.client.util.RequestReleasingInputStream\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../../com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" title="com.offbytwo.jenkins.client.util中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../../index.html?com/offbytwo/jenkins/client/util/class-use/RequestReleasingInputStream.html" target="_top">框架</a></li>
|
||||
<li><a href="RequestReleasingInputStream.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.client.util.RequestReleasingInputStream 的使用" class="title">类 com.offbytwo.jenkins.client.util.RequestReleasingInputStream<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">没有com.offbytwo.jenkins.client.util.RequestReleasingInputStream的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../../com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" title="com.offbytwo.jenkins.client.util中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../../index.html?com/offbytwo/jenkins/client/util/class-use/RequestReleasingInputStream.html" target="_top">框架</a></li>
|
||||
<li><a href="RequestReleasingInputStream.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.client.util</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="bar"><a href="../../../../../com/offbytwo/jenkins/client/util/package-summary.html" target="classFrame">com.offbytwo.jenkins.client.util</a></h1>
|
||||
<div class="indexContainer">
|
||||
<h2 title="类">类</h2>
|
||||
<ul title="类">
|
||||
<li><a href="EncodingUtils.html" title="com.offbytwo.jenkins.client.util中的类" target="classFrame">EncodingUtils</a></li>
|
||||
<li><a href="RequestReleasingInputStream.html" title="com.offbytwo.jenkins.client.util中的类" target="classFrame">RequestReleasingInputStream</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,140 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.client.util</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="com.offbytwo.jenkins.client.util";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li class="navBarCell1Rev">程序包</li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/package-summary.html">上一个程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/validator/package-summary.html">下一个程序包</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="程序包" class="title">程序包 com.offbytwo.jenkins.client.util</h1>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="类概要表, 列表类和解释">
|
||||
<caption><span>类概要</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">类</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../../../com/offbytwo/jenkins/client/util/EncodingUtils.html" title="com.offbytwo.jenkins.client.util中的类">EncodingUtils</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="../../../../../com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" title="com.offbytwo.jenkins.client.util中的类">RequestReleasingInputStream</a></td>
|
||||
<td class="colLast">
|
||||
<div class="block">Releases the http request method if it is closed</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li class="navBarCell1Rev">程序包</li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/package-summary.html">上一个程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/validator/package-summary.html">下一个程序包</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,138 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.client.util 类分层结构</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="com.offbytwo.jenkins.client.util \u7C7B\u5206\u5C42\u7ED3\u6784";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/package-tree.html">上一个</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/validator/package-tree.html">下一个</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 class="title">程序包com.offbytwo.jenkins.client.util的分层结构</h1>
|
||||
<span class="strong">程序包分层结构:</span>
|
||||
<ul class="horizontal">
|
||||
<li><a href="../../../../../overview-tree.html">所有程序包</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<h2 title="类分层结构">类分层结构</h2>
|
||||
<ul>
|
||||
<li type="circle">java.lang.Object
|
||||
<ul>
|
||||
<li type="circle">com.offbytwo.jenkins.client.util.<a href="../../../../../com/offbytwo/jenkins/client/util/EncodingUtils.html" title="com.offbytwo.jenkins.client.util中的类"><span class="strong">EncodingUtils</span></a></li>
|
||||
<li type="circle">java.io.InputStream (implements java.io.Closeable)
|
||||
<ul>
|
||||
<li type="circle">java.io.FilterInputStream
|
||||
<ul>
|
||||
<li type="circle">com.offbytwo.jenkins.client.util.<a href="../../../../../com/offbytwo/jenkins/client/util/RequestReleasingInputStream.html" title="com.offbytwo.jenkins.client.util中的类"><span class="strong">RequestReleasingInputStream</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/package-tree.html">上一个</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/validator/package-tree.html">下一个</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:07 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>程序包 com.offbytwo.jenkins.client.util的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7A0B\u5E8F\u5305 com.offbytwo.jenkins.client.util\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="程序包 com.offbytwo.jenkins.client.util 的使用" class="title">程序包 com.offbytwo.jenkins.client.util<br>的使用</h1>
|
||||
</div>
|
||||
<div class="contentContainer">没有com.offbytwo.jenkins.client.util的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/util/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,260 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>HttpResponseValidator</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="HttpResponseValidator";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/HttpResponseValidator.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/validator/HttpResponseValidator.html" target="_top">框架</a></li>
|
||||
<li><a href="HttpResponseValidator.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.client.validator</div>
|
||||
<h2 title="类 HttpResponseValidator" class="title">类 HttpResponseValidator</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.client.validator.HttpResponseValidator</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">HttpResponseValidator</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../../com/offbytwo/jenkins/client/validator/HttpResponseValidator.html#HttpResponseValidator()">HttpResponseValidator</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../../com/offbytwo/jenkins/client/validator/HttpResponseValidator.html#validateResponse(org.apache.http.HttpResponse)">validateResponse</a></strong>(org.apache.http.HttpResponse response)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="HttpResponseValidator()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>HttpResponseValidator</h4>
|
||||
<pre>public HttpResponseValidator()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="validateResponse(org.apache.http.HttpResponse)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>validateResponse</h4>
|
||||
<pre>public void validateResponse(org.apache.http.HttpResponse response)
|
||||
throws org.apache.http.client.HttpResponseException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>org.apache.http.client.HttpResponseException</code></dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/HttpResponseValidator.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/validator/HttpResponseValidator.html" target="_top">框架</a></li>
|
||||
<li><a href="HttpResponseValidator.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.client.validator.HttpResponseValidator的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.client.validator.HttpResponseValidator\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../../com/offbytwo/jenkins/client/validator/HttpResponseValidator.html" title="com.offbytwo.jenkins.client.validator中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../../index.html?com/offbytwo/jenkins/client/validator/class-use/HttpResponseValidator.html" target="_top">框架</a></li>
|
||||
<li><a href="HttpResponseValidator.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.client.validator.HttpResponseValidator 的使用" class="title">类 com.offbytwo.jenkins.client.validator.HttpResponseValidator<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">没有com.offbytwo.jenkins.client.validator.HttpResponseValidator的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../../com/offbytwo/jenkins/client/validator/HttpResponseValidator.html" title="com.offbytwo.jenkins.client.validator中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../../index.html?com/offbytwo/jenkins/client/validator/class-use/HttpResponseValidator.html" target="_top">框架</a></li>
|
||||
<li><a href="HttpResponseValidator.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.client.validator</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="bar"><a href="../../../../../com/offbytwo/jenkins/client/validator/package-summary.html" target="classFrame">com.offbytwo.jenkins.client.validator</a></h1>
|
||||
<div class="indexContainer">
|
||||
<h2 title="类">类</h2>
|
||||
<ul title="类">
|
||||
<li><a href="HttpResponseValidator.html" title="com.offbytwo.jenkins.client.validator中的类" target="classFrame">HttpResponseValidator</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,134 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.client.validator</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="com.offbytwo.jenkins.client.validator";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li class="navBarCell1Rev">程序包</li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/util/package-summary.html">上一个程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">下一个程序包</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/validator/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="程序包" class="title">程序包 com.offbytwo.jenkins.client.validator</h1>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="类概要表, 列表类和解释">
|
||||
<caption><span>类概要</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">类</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../../../com/offbytwo/jenkins/client/validator/HttpResponseValidator.html" title="com.offbytwo.jenkins.client.validator中的类">HttpResponseValidator</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li class="navBarCell1Rev">程序包</li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/util/package-summary.html">上一个程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">下一个程序包</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/validator/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,129 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.client.validator 类分层结构</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="com.offbytwo.jenkins.client.validator \u7C7B\u5206\u5C42\u7ED3\u6784";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/util/package-tree.html">上一个</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/package-tree.html">下一个</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/validator/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 class="title">程序包com.offbytwo.jenkins.client.validator的分层结构</h1>
|
||||
<span class="strong">程序包分层结构:</span>
|
||||
<ul class="horizontal">
|
||||
<li><a href="../../../../../overview-tree.html">所有程序包</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<h2 title="类分层结构">类分层结构</h2>
|
||||
<ul>
|
||||
<li type="circle">java.lang.Object
|
||||
<ul>
|
||||
<li type="circle">com.offbytwo.jenkins.client.validator.<a href="../../../../../com/offbytwo/jenkins/client/validator/HttpResponseValidator.html" title="com.offbytwo.jenkins.client.validator中的类"><span class="strong">HttpResponseValidator</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/client/util/package-tree.html">上一个</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/package-tree.html">下一个</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/validator/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,116 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:07 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>程序包 com.offbytwo.jenkins.client.validator的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7A0B\u5E8F\u5305 com.offbytwo.jenkins.client.validator\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/validator/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="程序包 com.offbytwo.jenkins.client.validator 的使用" class="title">程序包 com.offbytwo.jenkins.client.validator<br>的使用</h1>
|
||||
</div>
|
||||
<div class="contentContainer">没有com.offbytwo.jenkins.client.validator的用法</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/client/validator/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,419 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>ComparableVersion.ListItem</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="ComparableVersion.ListItem";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ComparableVersion.ListItem.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" target="_top">框架</a></li>
|
||||
<li><a href="ComparableVersion.ListItem.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.helper</div>
|
||||
<h2 title="类 ComparableVersion.ListItem" class="title">类 ComparableVersion.ListItem</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>java.util.AbstractCollection<E></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>java.util.AbstractList<E></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>java.util.ArrayList<com.offbytwo.jenkins.helper.ComparableVersion.Item></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.helper.ComparableVersion.ListItem</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>所有已实现的接口:</dt>
|
||||
<dd>java.io.Serializable, java.lang.Cloneable, java.lang.Iterable<com.offbytwo.jenkins.helper.ComparableVersion.Item>, java.util.Collection<com.offbytwo.jenkins.helper.ComparableVersion.Item>, java.util.List<com.offbytwo.jenkins.helper.ComparableVersion.Item>, java.util.RandomAccess</dd>
|
||||
</dl>
|
||||
<dl>
|
||||
<dt>封闭类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public static class <span class="strong">ComparableVersion.ListItem</span>
|
||||
extends java.util.ArrayList<com.offbytwo.jenkins.helper.ComparableVersion.Item></pre>
|
||||
<div class="block">Represents a version list item. This class is used both for the global item list and for sub-lists (which start
|
||||
with '-(number)' in the version specification).</div>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../../serialized-form.html#com.offbytwo.jenkins.helper.ComparableVersion.ListItem">序列化表格</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="field_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>字段概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="字段概要表, 列表字段和解释">
|
||||
<caption><span>字段</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">字段和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html#INTEGER_ITEM">INTEGER_ITEM</a></strong></code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>static int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html#LIST_ITEM">LIST_ITEM</a></strong></code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html#STRING_ITEM">STRING_ITEM</a></strong></code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html#ComparableVersion.ListItem()">ComparableVersion.ListItem</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html#compareTo(com.offbytwo.jenkins.helper.ComparableVersion.Item)">compareTo</a></strong>(com.offbytwo.jenkins.helper.ComparableVersion.Item item)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html#getType()">getType</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html#isNull()">isNull</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html#toString()">toString</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.util.ArrayList">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.util.ArrayList</h3>
|
||||
<code>add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, retainAll, set, size, subList, toArray, toArray, trimToSize</code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.util.AbstractList">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.util.AbstractList</h3>
|
||||
<code>equals, hashCode</code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.util.AbstractCollection">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.util.AbstractCollection</h3>
|
||||
<code>containsAll</code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.util.List">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从接口继承的方法 java.util.List</h3>
|
||||
<code>containsAll, equals, hashCode</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>字段详细资料</h3>
|
||||
<a name="INTEGER_ITEM">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>INTEGER_ITEM</h4>
|
||||
<pre>public static final int INTEGER_ITEM</pre>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../../constant-values.html#com.offbytwo.jenkins.helper.ComparableVersion.ListItem.INTEGER_ITEM">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="STRING_ITEM">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>STRING_ITEM</h4>
|
||||
<pre>public static final int STRING_ITEM</pre>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../../constant-values.html#com.offbytwo.jenkins.helper.ComparableVersion.ListItem.STRING_ITEM">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="LIST_ITEM">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>LIST_ITEM</h4>
|
||||
<pre>public static final int LIST_ITEM</pre>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../../constant-values.html#com.offbytwo.jenkins.helper.ComparableVersion.ListItem.LIST_ITEM">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="ComparableVersion.ListItem()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>ComparableVersion.ListItem</h4>
|
||||
<pre>public ComparableVersion.ListItem()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getType()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getType</h4>
|
||||
<pre>public int getType()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isNull()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isNull</h4>
|
||||
<pre>public boolean isNull()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="compareTo(com.offbytwo.jenkins.helper.ComparableVersion.Item)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>compareTo</h4>
|
||||
<pre>public int compareTo(com.offbytwo.jenkins.helper.ComparableVersion.Item item)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="toString()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>toString</h4>
|
||||
<pre>public java.lang.String toString()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>toString</code> 在类中 <code>java.util.AbstractCollection<com.offbytwo.jenkins.helper.ComparableVersion.Item></code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ComparableVersion.ListItem.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" target="_top">框架</a></li>
|
||||
<li><a href="ComparableVersion.ListItem.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,419 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>ComparableVersion</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="ComparableVersion";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ComparableVersion.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/ComparableVersion.html" target="_top">框架</a></li>
|
||||
<li><a href="ComparableVersion.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li><a href="#nested_class_summary">嵌套</a> | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.helper</div>
|
||||
<h2 title="类 ComparableVersion" class="title">类 ComparableVersion</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.helper.ComparableVersion</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>所有已实现的接口:</dt>
|
||||
<dd>java.lang.Comparable<<a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a>></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">ComparableVersion</span>
|
||||
extends java.lang.Object
|
||||
implements java.lang.Comparable<<a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a>></pre>
|
||||
<div class="block">This code is copied from Maven Core with slight modifications. Generic implementation of version comparison.
|
||||
Features:
|
||||
<ul>
|
||||
<li>mixing of '<code>-</code>' (hyphen) and '<code>.</code>' (dot) separators,</li>
|
||||
<li>transition between characters and digits also constitutes a separator:
|
||||
<code>1.0alpha1 => [1, 0, alpha, 1]</code></li>
|
||||
<li>unlimited number of version components,</li>
|
||||
<li>version components in the text can be digits or strings,</li>
|
||||
<li>strings are checked for well-known qualifiers and the qualifier ordering is used for version ordering. Well-known
|
||||
qualifiers (case insensitive) are:
|
||||
<ul>
|
||||
<li><code>alpha</code> or <code>a</code></li>
|
||||
<li><code>beta</code> or <code>b</code></li>
|
||||
<li><code>milestone</code> or <code>m</code></li>
|
||||
<li><code>rc</code> or <code>cr</code></li>
|
||||
<li><code>snapshot</code></li>
|
||||
<li><code>(the empty string)</code> or <code>ga</code> or <code>final</code></li>
|
||||
<li><code>sp</code></li>
|
||||
</ul>
|
||||
Unknown qualifiers are considered after known qualifiers, with lexical order (always case insensitive),</li>
|
||||
<li>a hyphen usually precedes a qualifier, and is always less important than something preceded with a dot.</li>
|
||||
</ul></div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd><a href="mailto:kenney@apache.org">Kenney Westerhof</a>, <a href="mailto:hboutemy@apache.org">Hervé Boutemy</a></dd>
|
||||
<dt><span class="strong">另请参阅:</span></dt><dd><a href="https://cwiki.apache.org/confluence/display/MAVENOLD/Versioning">"Versioning" on Maven Wiki</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>嵌套类概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="嵌套类概要表, 列表嵌套类和解释">
|
||||
<caption><span>嵌套类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static class </code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion.ListItem</a></strong></code>
|
||||
<div class="block">Represents a version list item.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#ComparableVersion(java.lang.String)">ComparableVersion</a></strong>(java.lang.String version)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#compareTo(com.offbytwo.jenkins.helper.ComparableVersion)">compareTo</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a> o)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object o)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#getCanonical()">getCanonical</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion.ListItem</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#getItems()">getItems</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>static void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#main(java.lang.String...)">main</a></strong>(java.lang.String... args)</code>
|
||||
<div class="block">Main to test version parsing and comparison.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#parseVersion(java.lang.String)">parseVersion</a></strong>(java.lang.String version)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#toString()">toString</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="ComparableVersion(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>ComparableVersion</h4>
|
||||
<pre>public ComparableVersion(java.lang.String version)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="parseVersion(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>parseVersion</h4>
|
||||
<pre>public final void parseVersion(java.lang.String version)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="compareTo(com.offbytwo.jenkins.helper.ComparableVersion)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>compareTo</h4>
|
||||
<pre>public int compareTo(<a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a> o)</pre>
|
||||
<dl>
|
||||
<dt><strong>指定者:</strong></dt>
|
||||
<dd><code>compareTo</code> 在接口中 <code>java.lang.Comparable<<a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a>></code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="toString()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>toString</h4>
|
||||
<pre>public java.lang.String toString()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>toString</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getCanonical()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getCanonical</h4>
|
||||
<pre>public java.lang.String getCanonical()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object o)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getItems()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getItems</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion.ListItem</a> getItems()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="main(java.lang.String...)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>main</h4>
|
||||
<pre>public static void main(java.lang.String... args)</pre>
|
||||
<div class="block">Main to test version parsing and comparison.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>args</code> - the version strings to parse and compare</dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ComparableVersion.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/ComparableVersion.html" target="_top">框架</a></li>
|
||||
<li><a href="ComparableVersion.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li><a href="#nested_class_summary">嵌套</a> | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,488 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>JenkinsVersion</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="JenkinsVersion";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JenkinsVersion.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/JenkinsVersion.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsVersion.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.helper</div>
|
||||
<h2 title="类 JenkinsVersion" class="title">类 JenkinsVersion</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.helper.JenkinsVersion</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>所有已实现的接口:</dt>
|
||||
<dd>java.lang.Comparable<<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a>></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">JenkinsVersion</span>
|
||||
extends java.lang.Object
|
||||
implements java.lang.Comparable<<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a>></pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#JenkinsVersion()">JenkinsVersion</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#JenkinsVersion(java.lang.String)">JenkinsVersion</a></strong>(java.lang.String version)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#compareTo(com.offbytwo.jenkins.helper.JenkinsVersion)">compareTo</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> o)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#create(java.lang.String)">create</a></strong>(java.lang.String version)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#getLiteralVersion()">getLiteralVersion</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isEqualTo(com.offbytwo.jenkins.helper.JenkinsVersion)">isEqualTo</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isEqualTo(java.lang.String)">isEqualTo</a></strong>(java.lang.String version)</code>
|
||||
<div class="block">This will check if the current instance version is <code>=</code> the
|
||||
given version.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isGreaterOrEqual(com.offbytwo.jenkins.helper.JenkinsVersion)">isGreaterOrEqual</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isGreaterOrEqual(java.lang.String)">isGreaterOrEqual</a></strong>(java.lang.String version)</code>
|
||||
<div class="block">This will check if the current instance version is <code>>=</code> the
|
||||
given version.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isGreaterThan(com.offbytwo.jenkins.helper.JenkinsVersion)">isGreaterThan</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isGreaterThan(java.lang.String)">isGreaterThan</a></strong>(java.lang.String version)</code>
|
||||
<div class="block">This will check if the current instance version is <code>></code> the
|
||||
given version.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isLessOrEqual(com.offbytwo.jenkins.helper.JenkinsVersion)">isLessOrEqual</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isLessOrEqual(java.lang.String)">isLessOrEqual</a></strong>(java.lang.String version)</code>
|
||||
<div class="block">This will check if the current instance version is <code><=</code> the
|
||||
given version.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isLessThan(com.offbytwo.jenkins.helper.JenkinsVersion)">isLessThan</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isLessThan(java.lang.String)">isLessThan</a></strong>(java.lang.String version)</code>
|
||||
<div class="block">This will check if the current instance version is <code><</code> the
|
||||
given version.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#toString()">toString</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="JenkinsVersion()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>JenkinsVersion</h4>
|
||||
<pre>public JenkinsVersion()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="JenkinsVersion(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>JenkinsVersion</h4>
|
||||
<pre>public JenkinsVersion(java.lang.String version)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="create(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>create</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> create(java.lang.String version)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isGreaterThan(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isGreaterThan</h4>
|
||||
<pre>public boolean isGreaterThan(java.lang.String version)</pre>
|
||||
<div class="block">This will check if the current instance version is <code>></code> the
|
||||
given version.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>version</code> - The version to compare with.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>true or false.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isGreaterThan(com.offbytwo.jenkins.helper.JenkinsVersion)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isGreaterThan</h4>
|
||||
<pre>public boolean isGreaterThan(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isGreaterOrEqual(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isGreaterOrEqual</h4>
|
||||
<pre>public boolean isGreaterOrEqual(java.lang.String version)</pre>
|
||||
<div class="block">This will check if the current instance version is <code>>=</code> the
|
||||
given version.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>version</code> - The version to compare with.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>true or false.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isGreaterOrEqual(com.offbytwo.jenkins.helper.JenkinsVersion)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isGreaterOrEqual</h4>
|
||||
<pre>public boolean isGreaterOrEqual(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isLessThan(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isLessThan</h4>
|
||||
<pre>public boolean isLessThan(java.lang.String version)</pre>
|
||||
<div class="block">This will check if the current instance version is <code><</code> the
|
||||
given version.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>version</code> - The version to compare with.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>true or false.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isLessThan(com.offbytwo.jenkins.helper.JenkinsVersion)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isLessThan</h4>
|
||||
<pre>public boolean isLessThan(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isLessOrEqual(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isLessOrEqual</h4>
|
||||
<pre>public boolean isLessOrEqual(java.lang.String version)</pre>
|
||||
<div class="block">This will check if the current instance version is <code><=</code> the
|
||||
given version.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>version</code> - The version to compare with.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>true or false.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isLessOrEqual(com.offbytwo.jenkins.helper.JenkinsVersion)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isLessOrEqual</h4>
|
||||
<pre>public boolean isLessOrEqual(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isEqualTo(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isEqualTo</h4>
|
||||
<pre>public boolean isEqualTo(java.lang.String version)</pre>
|
||||
<div class="block">This will check if the current instance version is <code>=</code> the
|
||||
given version.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>version</code> - The version to compare with.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>true or false.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isEqualTo(com.offbytwo.jenkins.helper.JenkinsVersion)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isEqualTo</h4>
|
||||
<pre>public boolean isEqualTo(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="compareTo(com.offbytwo.jenkins.helper.JenkinsVersion)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>compareTo</h4>
|
||||
<pre>public int compareTo(<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> o)</pre>
|
||||
<dl>
|
||||
<dt><strong>指定者:</strong></dt>
|
||||
<dd><code>compareTo</code> 在接口中 <code>java.lang.Comparable<<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a>></code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLiteralVersion()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLiteralVersion</h4>
|
||||
<pre>public java.lang.String getLiteralVersion()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="toString()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>toString</h4>
|
||||
<pre>public java.lang.String toString()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>toString</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JenkinsVersion.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/JenkinsVersion.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsVersion.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,253 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Range.Builder</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Range.Builder";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Range.Builder.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/Range.Builder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.Builder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.helper</div>
|
||||
<h2 title="类 Range.Builder" class="title">类 Range.Builder</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.helper.Range.Builder</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>封闭类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public static final class <span class="strong">Range.Builder</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.FromBuilder</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html#from(int)">from</a></strong>(int f)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html#only(int)">only</a></strong>(int only)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.ToBuilder</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html#to(int)">to</a></strong>(int t)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="from(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>from</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.FromBuilder</a> from(int f)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="to(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>to</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.ToBuilder</a> to(int t)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="only(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>only</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> only(int only)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Range.Builder.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/Range.Builder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.Builder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,274 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Range.FromBuilder</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Range.FromBuilder";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Range.FromBuilder.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/Range.FromBuilder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.FromBuilder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.helper</div>
|
||||
<h2 title="类 Range.FromBuilder" class="title">类 Range.FromBuilder</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.helper.Range.FromBuilder</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>封闭类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public static final class <span class="strong">Range.FromBuilder</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html#Range.FromBuilder(com.offbytwo.jenkins.helper.Range)">Range.FromBuilder</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html#build()">build</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html#to(int)">to</a></strong>(int t)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Range.FromBuilder(com.offbytwo.jenkins.helper.Range)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Range.FromBuilder</h4>
|
||||
<pre>public Range.FromBuilder(<a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="to(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>to</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> to(int t)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="build()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>build</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> build()</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Range.FromBuilder.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/Range.FromBuilder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.FromBuilder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,261 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Range.ToBuilder</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Range.ToBuilder";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Range.ToBuilder.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/Range.ToBuilder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.ToBuilder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.helper</div>
|
||||
<h2 title="类 Range.ToBuilder" class="title">类 Range.ToBuilder</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.helper.Range.ToBuilder</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>封闭类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public static final class <span class="strong">Range.ToBuilder</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html#Range.ToBuilder(com.offbytwo.jenkins.helper.Range)">Range.ToBuilder</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html#build()">build</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Range.ToBuilder(com.offbytwo.jenkins.helper.Range)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Range.ToBuilder</h4>
|
||||
<pre>public Range.ToBuilder(<a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="build()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>build</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> build()</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Range.ToBuilder.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li>下一个类</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/Range.ToBuilder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.ToBuilder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,334 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Range</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Range";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Range.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/Range.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li><a href="#nested_class_summary">嵌套</a> | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.helper</div>
|
||||
<h2 title="类 Range" class="title">类 Range</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.helper.Range</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public final class <span class="strong">Range</span>
|
||||
extends java.lang.Object</pre>
|
||||
<div class="block">The range class will handle the following situations:
|
||||
<ul>
|
||||
<li>{M,N}: From the M-th element (inclusive) to the N-th element (exclusive).
|
||||
</li>
|
||||
<li>{M,}: From the M-th element (inclusive) to the end.</li>
|
||||
<li>{,N}: From the first element (inclusive) to the N-th element (exclusive).
|
||||
The same as {0,N}.</li>
|
||||
<li>{N}: Just retrieve the N-th element. The same as {N,N+1}.</li>
|
||||
</ul>
|
||||
|
||||
You can use the <a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类"><code>Range</code></a> class like this:
|
||||
|
||||
<pre>
|
||||
Range fromAndTo = Range.build().from(1).to(5);
|
||||
Range fromOnly = Range.build().from(3).build();
|
||||
Range toOnly = Range.build().to(5).build();
|
||||
Range only = Range.build().only(3);
|
||||
</pre></div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</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>嵌套类概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="嵌套类概要表, 列表嵌套类和解释">
|
||||
<caption><span>嵌套类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static class </code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">Range.Builder</a></strong></code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>static class </code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.FromBuilder</a></strong></code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static class </code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.ToBuilder</a></strong></code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="field_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>字段概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="字段概要表, 列表字段和解释">
|
||||
<caption><span>字段</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">字段和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.html#CURLY_BRACKET_CLOSE">CURLY_BRACKET_CLOSE</a></strong></code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>static java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.html#CURLY_BRACKET_OPEN">CURLY_BRACKET_OPEN</a></strong></code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">Range.Builder</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.html#build()">build</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/helper/Range.html#getRangeString()">getRangeString</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</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>字段详细资料</h3>
|
||||
<a name="CURLY_BRACKET_OPEN">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>CURLY_BRACKET_OPEN</h4>
|
||||
<pre>public static final java.lang.String CURLY_BRACKET_OPEN</pre>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../../constant-values.html#com.offbytwo.jenkins.helper.Range.CURLY_BRACKET_OPEN">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="CURLY_BRACKET_CLOSE">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>CURLY_BRACKET_CLOSE</h4>
|
||||
<pre>public static final java.lang.String CURLY_BRACKET_CLOSE</pre>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../../constant-values.html#com.offbytwo.jenkins.helper.Range.CURLY_BRACKET_CLOSE">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getRangeString()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getRangeString</h4>
|
||||
<pre>public java.lang.String getRangeString()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="build()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>build</h4>
|
||||
<pre>public static <a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">Range.Builder</a> build()</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Range.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/Range.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li><a href="#nested_class_summary">嵌套</a> | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li>构造器 | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,156 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:07 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.helper.ComparableVersion.ListItem的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.helper.ComparableVersion.ListItem\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/ComparableVersion.ListItem.html" target="_top">框架</a></li>
|
||||
<li><a href="ComparableVersion.ListItem.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.helper.ComparableVersion.ListItem 的使用" class="title">类 com.offbytwo.jenkins.helper.ComparableVersion.ListItem<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion.ListItem</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.helper">com.offbytwo.jenkins.helper</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.helper">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中<a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion.ListItem</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>返回<a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion.ListItem</a>的<a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion.ListItem</a></code></td>
|
||||
<td class="colLast"><span class="strong">ComparableVersion.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#getItems()">getItems</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/ComparableVersion.ListItem.html" target="_top">框架</a></li>
|
||||
<li><a href="ComparableVersion.ListItem.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,156 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.helper.ComparableVersion的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.helper.ComparableVersion\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/ComparableVersion.html" target="_top">框架</a></li>
|
||||
<li><a href="ComparableVersion.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.helper.ComparableVersion 的使用" class="title">类 com.offbytwo.jenkins.helper.ComparableVersion<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.helper">com.offbytwo.jenkins.helper</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.helper">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中<a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>参数类型为<a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a>的<a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><span class="strong">ComparableVersion.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.html#compareTo(com.offbytwo.jenkins.helper.ComparableVersion)">compareTo</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a> o)</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/ComparableVersion.html" target="_top">框架</a></li>
|
||||
<li><a href="ComparableVersion.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,211 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.helper.JenkinsVersion的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.helper.JenkinsVersion\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/JenkinsVersion.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsVersion.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.helper.JenkinsVersion 的使用" class="title">类 com.offbytwo.jenkins.helper.JenkinsVersion<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins">com.offbytwo.jenkins</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.helper">com.offbytwo.jenkins.helper</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/package-summary.html">com.offbytwo.jenkins</a>中<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>返回<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a>的<a href="../../../../../com/offbytwo/jenkins/package-summary.html">com.offbytwo.jenkins</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a></code></td>
|
||||
<td class="colLast"><span class="strong">JenkinsServer.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/JenkinsServer.html#getVersion()">getVersion</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.helper">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>返回<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a>的<a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a></code></td>
|
||||
<td class="colLast"><span class="strong">JenkinsVersion.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#create(java.lang.String)">create</a></strong>(java.lang.String version)</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>参数类型为<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a>的<a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><span class="strong">JenkinsVersion.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#compareTo(com.offbytwo.jenkins.helper.JenkinsVersion)">compareTo</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> o)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><span class="strong">JenkinsVersion.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isEqualTo(com.offbytwo.jenkins.helper.JenkinsVersion)">isEqualTo</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><span class="strong">JenkinsVersion.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isGreaterOrEqual(com.offbytwo.jenkins.helper.JenkinsVersion)">isGreaterOrEqual</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><span class="strong">JenkinsVersion.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isGreaterThan(com.offbytwo.jenkins.helper.JenkinsVersion)">isGreaterThan</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><span class="strong">JenkinsVersion.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isLessOrEqual(com.offbytwo.jenkins.helper.JenkinsVersion)">isLessOrEqual</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><span class="strong">JenkinsVersion.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html#isLessThan(com.offbytwo.jenkins.helper.JenkinsVersion)">isLessThan</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a> jv)</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/JenkinsVersion.html" target="_top">框架</a></li>
|
||||
<li><a href="JenkinsVersion.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,156 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.helper.Range.Builder的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.helper.Range.Builder\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/Range.Builder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.Builder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.helper.Range.Builder 的使用" class="title">类 com.offbytwo.jenkins.helper.Range.Builder<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">Range.Builder</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.helper">com.offbytwo.jenkins.helper</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.helper">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中<a href="../../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">Range.Builder</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>返回<a href="../../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">Range.Builder</a>的<a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">Range.Builder</a></code></td>
|
||||
<td class="colLast"><span class="strong">Range.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/Range.html#build()">build</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/Range.Builder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.Builder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,156 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.helper.Range.FromBuilder的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.helper.Range.FromBuilder\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/Range.FromBuilder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.FromBuilder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.helper.Range.FromBuilder 的使用" class="title">类 com.offbytwo.jenkins.helper.Range.FromBuilder<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.FromBuilder</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.helper">com.offbytwo.jenkins.helper</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.helper">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中<a href="../../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.FromBuilder</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>返回<a href="../../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.FromBuilder</a>的<a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.FromBuilder</a></code></td>
|
||||
<td class="colLast"><span class="strong">Range.Builder.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/Range.Builder.html#from(int)">from</a></strong>(int f)</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/Range.FromBuilder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.FromBuilder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,156 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.helper.Range.ToBuilder的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.helper.Range.ToBuilder\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/Range.ToBuilder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.ToBuilder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.helper.Range.ToBuilder 的使用" class="title">类 com.offbytwo.jenkins.helper.Range.ToBuilder<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.ToBuilder</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.helper">com.offbytwo.jenkins.helper</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.helper">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中<a href="../../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.ToBuilder</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>返回<a href="../../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.ToBuilder</a>的<a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.ToBuilder</a></code></td>
|
||||
<td class="colLast"><span class="strong">Range.Builder.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/Range.Builder.html#to(int)">to</a></strong>(int t)</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/Range.ToBuilder.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.ToBuilder.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,216 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>类 com.offbytwo.jenkins.helper.Range的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7C7B com.offbytwo.jenkins.helper.Range\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/Range.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h2 title="类 com.offbytwo.jenkins.helper.Range 的使用" class="title">类 com.offbytwo.jenkins.helper.Range<br>的使用</h2>
|
||||
</div>
|
||||
<div class="classUseContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.helper">com.offbytwo.jenkins.helper</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.model">com.offbytwo.jenkins.model</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList">
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.helper">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>返回<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a>的<a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></code></td>
|
||||
<td class="colLast"><span class="strong">Range.FromBuilder.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html#build()">build</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></code></td>
|
||||
<td class="colLast"><span class="strong">Range.ToBuilder.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html#build()">build</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></code></td>
|
||||
<td class="colLast"><span class="strong">Range.Builder.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/Range.Builder.html#only(int)">only</a></strong>(int only)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></code></td>
|
||||
<td class="colLast"><span class="strong">Range.FromBuilder.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html#to(int)">to</a></strong>(int t)</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表构造器和解释">
|
||||
<caption><span>参数类型为<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a>的<a href="../../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colLast"><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html#Range.FromBuilder(com.offbytwo.jenkins.helper.Range)">Range.FromBuilder</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colLast"><code><strong><a href="../../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html#Range.ToBuilder(com.offbytwo.jenkins.helper.Range)">Range.ToBuilder</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</code> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.model">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3><a href="../../../../../com/offbytwo/jenkins/model/package-summary.html">com.offbytwo.jenkins.model</a>中<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a>的使用</h3>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表方法和解释">
|
||||
<caption><span>参数类型为<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a>的<a href="../../../../../com/offbytwo/jenkins/model/package-summary.html">com.offbytwo.jenkins.model</a>中的方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a>></code></td>
|
||||
<td class="colLast"><span class="strong">MavenJobWithDetails.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getAllBuilds(com.offbytwo.jenkins.helper.Range)">getAllBuilds</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</code>
|
||||
<div class="block">
|
||||
{M,N}: From the M-th element (inclusive) to the N-th element
|
||||
(exclusive).</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a>></code></td>
|
||||
<td class="colLast"><span class="strong">JobWithDetails.</span><code><strong><a href="../../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getAllBuilds(com.offbytwo.jenkins.helper.Range)">getAllBuilds</a></strong>(<a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</code>
|
||||
<div class="block">
|
||||
{M,N}: From the M-th element (inclusive) to the N-th element
|
||||
(exclusive).</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="../package-summary.html">程序包</a></li>
|
||||
<li><a href="../../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">类</a></li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="../package-tree.html">树</a></li>
|
||||
<li><a href="../../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../../index.html?com/offbytwo/jenkins/helper/class-use/Range.html" target="_top">框架</a></li>
|
||||
<li><a href="Range.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.helper</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
|
||||
</head>
|
||||
<body>
|
||||
<h1 class="bar"><a href="../../../../com/offbytwo/jenkins/helper/package-summary.html" target="classFrame">com.offbytwo.jenkins.helper</a></h1>
|
||||
<div class="indexContainer">
|
||||
<h2 title="类">类</h2>
|
||||
<ul title="类">
|
||||
<li><a href="ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">ComparableVersion</a></li>
|
||||
<li><a href="ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">ComparableVersion.ListItem</a></li>
|
||||
<li><a href="JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">JenkinsVersion</a></li>
|
||||
<li><a href="Range.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">Range</a></li>
|
||||
<li><a href="Range.Builder.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">Range.Builder</a></li>
|
||||
<li><a href="Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">Range.FromBuilder</a></li>
|
||||
<li><a href="Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类" target="classFrame">Range.ToBuilder</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,166 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.helper</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="com.offbytwo.jenkins.helper";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li class="navBarCell1Rev">程序包</li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/validator/package-summary.html">上一个程序包</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/package-summary.html">下一个程序包</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="程序包" class="title">程序包 com.offbytwo.jenkins.helper</h1>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table class="packageSummary" border="0" cellpadding="3" cellspacing="0" summary="类概要表, 列表类和解释">
|
||||
<caption><span>类概要</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">类</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion</a></td>
|
||||
<td class="colLast">
|
||||
<div class="block">This code is copied from Maven Core with slight modifications.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类">ComparableVersion.ListItem</a></td>
|
||||
<td class="colLast">
|
||||
<div class="block">Represents a version list item.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类">JenkinsVersion</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a></td>
|
||||
<td class="colLast">
|
||||
<div class="block">The range class will handle the following situations:
|
||||
|
||||
{M,N}: From the M-th element (inclusive) to the N-th element (exclusive).</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类">Range.Builder</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.FromBuilder</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类">Range.ToBuilder</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li class="navBarCell1Rev">程序包</li>
|
||||
<li>类</li>
|
||||
<li><a href="package-use.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/validator/package-summary.html">上一个程序包</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/package-summary.html">下一个程序包</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/package-summary.html" target="_top">框架</a></li>
|
||||
<li><a href="package-summary.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,147 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:06 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>com.offbytwo.jenkins.helper 类分层结构</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="com.offbytwo.jenkins.helper \u7C7B\u5206\u5C42\u7ED3\u6784";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/validator/package-tree.html">上一个</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/package-tree.html">下一个</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 class="title">程序包com.offbytwo.jenkins.helper的分层结构</h1>
|
||||
<span class="strong">程序包分层结构:</span>
|
||||
<ul class="horizontal">
|
||||
<li><a href="../../../../overview-tree.html">所有程序包</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<h2 title="类分层结构">类分层结构</h2>
|
||||
<ul>
|
||||
<li type="circle">java.lang.Object
|
||||
<ul>
|
||||
<li type="circle">java.util.AbstractCollection<E> (implements java.util.Collection<E>)
|
||||
<ul>
|
||||
<li type="circle">java.util.AbstractList<E> (implements java.util.List<E>)
|
||||
<ul>
|
||||
<li type="circle">java.util.ArrayList<E> (implements java.lang.Cloneable, java.util.List<E>, java.util.RandomAccess, java.io.Serializable)
|
||||
<ul>
|
||||
<li type="circle">com.offbytwo.jenkins.helper.<a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.ListItem.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">ComparableVersion.ListItem</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li type="circle">com.offbytwo.jenkins.helper.<a href="../../../../com/offbytwo/jenkins/helper/ComparableVersion.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">ComparableVersion</span></a> (implements java.lang.Comparable<T>)</li>
|
||||
<li type="circle">com.offbytwo.jenkins.helper.<a href="../../../../com/offbytwo/jenkins/helper/JenkinsVersion.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">JenkinsVersion</span></a> (implements java.lang.Comparable<T>)</li>
|
||||
<li type="circle">com.offbytwo.jenkins.helper.<a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">Range</span></a></li>
|
||||
<li type="circle">com.offbytwo.jenkins.helper.<a href="../../../../com/offbytwo/jenkins/helper/Range.Builder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">Range.Builder</span></a></li>
|
||||
<li type="circle">com.offbytwo.jenkins.helper.<a href="../../../../com/offbytwo/jenkins/helper/Range.FromBuilder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">Range.FromBuilder</span></a></li>
|
||||
<li type="circle">com.offbytwo.jenkins.helper.<a href="../../../../com/offbytwo/jenkins/helper/Range.ToBuilder.html" title="com.offbytwo.jenkins.helper中的类"><span class="strong">Range.ToBuilder</span></a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li>使用</li>
|
||||
<li class="navBarCell1Rev">树</li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/client/validator/package-tree.html">上一个</a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/package-tree.html">下一个</a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/package-tree.html" target="_top">框架</a></li>
|
||||
<li><a href="package-tree.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,217 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:07 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>程序包 com.offbytwo.jenkins.helper的使用</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="\u7A0B\u5E8F\u5305 com.offbytwo.jenkins.helper\u7684\u4F7F\u7528";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_top">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ========= END OF TOP NAVBAR ========= -->
|
||||
<div class="header">
|
||||
<h1 title="程序包 com.offbytwo.jenkins.helper 的使用" class="title">程序包 com.offbytwo.jenkins.helper<br>的使用</h1>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表程序包和解释">
|
||||
<caption><span>使用<a href="../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>的程序包</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">程序包</th>
|
||||
<th class="colLast" scope="col">说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins">com.offbytwo.jenkins</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.helper">com.offbytwo.jenkins.helper</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><a href="#com.offbytwo.jenkins.model">com.offbytwo.jenkins.model</a></td>
|
||||
<td class="colLast"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins">
|
||||
<!-- -->
|
||||
</a>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表类和解释">
|
||||
<caption><span><a href="../../../../com/offbytwo/jenkins/package-summary.html">com.offbytwo.jenkins</a>使用的<a href="../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/helper/class-use/JenkinsVersion.html#com.offbytwo.jenkins">JenkinsVersion</a> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.helper">
|
||||
<!-- -->
|
||||
</a>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表类和解释">
|
||||
<caption><span><a href="../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>使用的<a href="../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/helper/class-use/ComparableVersion.html#com.offbytwo.jenkins.helper">ComparableVersion</a>
|
||||
<div class="block">This code is copied from Maven Core with slight modifications.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/helper/class-use/ComparableVersion.ListItem.html#com.offbytwo.jenkins.helper">ComparableVersion.ListItem</a>
|
||||
<div class="block">Represents a version list item.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/helper/class-use/JenkinsVersion.html#com.offbytwo.jenkins.helper">JenkinsVersion</a> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/helper/class-use/Range.html#com.offbytwo.jenkins.helper">Range</a>
|
||||
<div class="block">The range class will handle the following situations:
|
||||
|
||||
{M,N}: From the M-th element (inclusive) to the N-th element (exclusive).</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/helper/class-use/Range.Builder.html#com.offbytwo.jenkins.helper">Range.Builder</a> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/helper/class-use/Range.FromBuilder.html#com.offbytwo.jenkins.helper">Range.FromBuilder</a> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/helper/class-use/Range.ToBuilder.html#com.offbytwo.jenkins.helper">Range.ToBuilder</a> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
<li class="blockList"><a name="com.offbytwo.jenkins.model">
|
||||
<!-- -->
|
||||
</a>
|
||||
<table border="0" cellpadding="3" cellspacing="0" summary="使用表, 列表类和解释">
|
||||
<caption><span><a href="../../../../com/offbytwo/jenkins/model/package-summary.html">com.offbytwo.jenkins.model</a>使用的<a href="../../../../com/offbytwo/jenkins/helper/package-summary.html">com.offbytwo.jenkins.helper</a>中的类</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">类和说明</th>
|
||||
</tr>
|
||||
<tbody>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><a href="../../../../com/offbytwo/jenkins/helper/class-use/Range.html#com.offbytwo.jenkins.model">Range</a>
|
||||
<div class="block">The range class will handle the following situations:
|
||||
|
||||
{M,N}: From the M-th element (inclusive) to the N-th element (exclusive).</div>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<!-- ======= START OF BOTTOM NAVBAR ====== -->
|
||||
<div class="bottomNav"><a name="navbar_bottom">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_bottom" title="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li>类</li>
|
||||
<li class="navBarCell1Rev">使用</li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个</li>
|
||||
<li>下一个</li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/helper/package-use.html" target="_top">框架</a></li>
|
||||
<li><a href="package-use.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,368 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Artifact</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Artifact";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Artifact.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Artifact.html" target="_top">框架</a></li>
|
||||
<li><a href="Artifact.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 Artifact" class="title">类 Artifact</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.Artifact</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">Artifact</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Artifact.html#Artifact()">Artifact</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Artifact.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object o)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Artifact.html#getDisplayPath()">getDisplayPath</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Artifact.html#getFileName()">getFileName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Artifact.html#getRelativePath()">getRelativePath</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Artifact.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Artifact.html#setDisplayPath(java.lang.String)">setDisplayPath</a></strong>(java.lang.String displayPath)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Artifact.html#setFileName(java.lang.String)">setFileName</a></strong>(java.lang.String fileName)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Artifact.html#setRelativePath(java.lang.String)">setRelativePath</a></strong>(java.lang.String relativePath)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Artifact()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Artifact</h4>
|
||||
<pre>public Artifact()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getDisplayPath()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDisplayPath</h4>
|
||||
<pre>public java.lang.String getDisplayPath()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setDisplayPath(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setDisplayPath</h4>
|
||||
<pre>public void setDisplayPath(java.lang.String displayPath)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getFileName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getFileName</h4>
|
||||
<pre>public java.lang.String getFileName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setFileName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setFileName</h4>
|
||||
<pre>public void setFileName(java.lang.String fileName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getRelativePath()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getRelativePath</h4>
|
||||
<pre>public java.lang.String getRelativePath()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setRelativePath(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setRelativePath</h4>
|
||||
<pre>public void setRelativePath(java.lang.String relativePath)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object o)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Artifact.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li>上一个类</li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Artifact.html" target="_top">框架</a></li>
|
||||
<li><a href="Artifact.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,288 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>BaseModel</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="BaseModel";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BaseModel.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Artifact.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BaseModel.html" target="_top">框架</a></li>
|
||||
<li><a href="BaseModel.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 BaseModel" class="title">类 BaseModel</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.BaseModel</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>直接已知子类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/model/Artifact.html" title="com.offbytwo.jenkins.model中的类">Artifact</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a>, <a href="../../../../com/offbytwo/jenkins/model/CauseAction.html" title="com.offbytwo.jenkins.model中的类">CauseAction</a>, <a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a>, <a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html" title="com.offbytwo.jenkins.model中的类">ComputerSet</a>, <a href="../../../../com/offbytwo/jenkins/model/Crumb.html" title="com.offbytwo.jenkins.model中的类">Crumb</a>, <a href="../../../../com/offbytwo/jenkins/model/ExtractHeader.html" title="com.offbytwo.jenkins.model中的类">ExtractHeader</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>, <a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类">LoadStatistics</a>, <a href="../../../../com/offbytwo/jenkins/model/MainView.html" title="com.offbytwo.jenkins.model中的类">MainView</a>, <a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a>, <a href="../../../../com/offbytwo/jenkins/model/MavenModule.html" title="com.offbytwo.jenkins.model中的类">MavenModule</a>, <a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html" title="com.offbytwo.jenkins.model中的类">MavenModuleRecord</a>, <a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html" title="com.offbytwo.jenkins.model中的类">OfflineCause</a>, <a href="../../../../com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类">Plugin</a>, <a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类">PluginDependency</a>, <a href="../../../../com/offbytwo/jenkins/model/PluginManager.html" title="com.offbytwo.jenkins.model中的类">PluginManager</a>, <a href="../../../../com/offbytwo/jenkins/model/Queue.html" title="com.offbytwo.jenkins.model中的类">Queue</a>, <a href="../../../../com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类">QueueItem</a>, <a href="../../../../com/offbytwo/jenkins/model/QueueItemActions.html" title="com.offbytwo.jenkins.model中的类">QueueItemActions</a>, <a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a>, <a href="../../../../com/offbytwo/jenkins/model/QueueTask.html" title="com.offbytwo.jenkins.model中的类">QueueTask</a>, <a href="../../../../com/offbytwo/jenkins/model/TestReport.html" title="com.offbytwo.jenkins.model中的类">TestReport</a>, <a href="../../../../com/offbytwo/jenkins/model/TestResult.html" title="com.offbytwo.jenkins.model中的类">TestResult</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">BaseModel</span>
|
||||
extends java.lang.Object</pre>
|
||||
<div class="block">The base model.</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#BaseModel()">BaseModel</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></strong>(<a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a> client)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="BaseModel()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BaseModel</h4>
|
||||
<pre>public BaseModel()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="get_class()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>get_class</h4>
|
||||
<pre>public java.lang.String get_class()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getClient()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getClient</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a> getClient()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>setClient</h4>
|
||||
<pre>public void setClient(<a href="../../../../com/offbytwo/jenkins/client/JenkinsHttpClient.html" title="com.offbytwo.jenkins.client中的类">JenkinsHttpClient</a> client)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BaseModel.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Artifact.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BaseModel.html" target="_top">框架</a></li>
|
||||
<li><a href="BaseModel.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,499 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Build</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Build";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Build.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Build.html" target="_top">框架</a></li>
|
||||
<li><a href="Build.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 Build" class="title">类 Build</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.Build</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>直接已知子类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a>, <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">Build</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="field_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>字段概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="字段概要表, 列表字段和解释">
|
||||
<caption><span>字段</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">字段和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_BEEN_CANCELLED">BUILD_HAS_BEEN_CANCELLED</a></strong></code>
|
||||
<div class="block">This will be returned by the API in cases where a build has been
|
||||
cancelled.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN">BUILD_HAS_NEVER_RUN</a></strong></code>
|
||||
<div class="block">This will be returned by the API in cases where no build has ever been
|
||||
executed like <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastBuild()"><code>JobWithDetails.getLastBuild()</code></a> etc.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#Build()">Build</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#Build(com.offbytwo.jenkins.model.Build)">Build</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> from)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#Build(int, java.lang.String)">Build</a></strong>(int number,
|
||||
java.lang.String url)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#details()">details</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#getNumber()">getNumber</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#getQueueId()">getQueueId</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/TestReport.html" title="com.offbytwo.jenkins.model中的类">TestReport</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#getTestReport()">getTestReport</a></strong>()</code>
|
||||
<div class="block">This is to get the information about <a href="../../../../com/offbytwo/jenkins/model/TestReport.html" title="com.offbytwo.jenkins.model中的类"><code>TestReport</code></a>
|
||||
for a Maven Job type.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/TestResult.html" title="com.offbytwo.jenkins.model中的类">TestResult</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#getTestResult()">getTestResult</a></strong>()</code>
|
||||
<div class="block">This is to get the information about run tests for a
|
||||
non Maven job type.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#getUrl()">getUrl</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Build.html#Stop()">Stop</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</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>字段详细资料</h3>
|
||||
<a name="BUILD_HAS_NEVER_RUN">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>BUILD_HAS_NEVER_RUN</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> BUILD_HAS_NEVER_RUN</pre>
|
||||
<div class="block">This will be returned by the API in cases where no build has ever been
|
||||
executed like <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastBuild()"><code>JobWithDetails.getLastBuild()</code></a> etc. This will also
|
||||
be returned by <a href="../../../../com/offbytwo/jenkins/model/Build.html#details()"><code>details()</code></a> is the build has not been run.</div>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="BUILD_HAS_BEEN_CANCELLED">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BUILD_HAS_BEEN_CANCELLED</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> BUILD_HAS_BEEN_CANCELLED</pre>
|
||||
<div class="block">This will be returned by the API in cases where a build has been
|
||||
cancelled.</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Build()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>Build</h4>
|
||||
<pre>public Build()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="Build(com.offbytwo.jenkins.model.Build)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>Build</h4>
|
||||
<pre>public Build(<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> from)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="Build(int, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Build</h4>
|
||||
<pre>public Build(int number,
|
||||
java.lang.String url)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getNumber()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getNumber</h4>
|
||||
<pre>public int getNumber()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getQueueId()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getQueueId</h4>
|
||||
<pre>public int getQueueId()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUrl()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUrl</h4>
|
||||
<pre>public java.lang.String getUrl()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="details()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>details</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a> details()
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The information from Jenkins. In cases the build has never run
|
||||
<a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getTestReport()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTestReport</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/TestReport.html" title="com.offbytwo.jenkins.model中的类">TestReport</a> getTestReport()
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">This is to get the information about <a href="../../../../com/offbytwo/jenkins/model/TestReport.html" title="com.offbytwo.jenkins.model中的类"><code>TestReport</code></a>
|
||||
for a Maven Job type.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><a href="../../../../com/offbytwo/jenkins/model/TestReport.html" title="com.offbytwo.jenkins.model中的类"><code>TestReport</code></a></dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getTestResult()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTestResult</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/TestResult.html" title="com.offbytwo.jenkins.model中的类">TestResult</a> getTestResult()
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">This is to get the information about run tests for a
|
||||
non Maven job type.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><a href="../../../../com/offbytwo/jenkins/model/TestResult.html" title="com.offbytwo.jenkins.model中的类"><code>TestResult</code></a></dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="Stop()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>Stop</h4>
|
||||
<pre>public java.lang.String Stop()
|
||||
throws org.apache.http.client.HttpResponseException,
|
||||
java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>org.apache.http.client.HttpResponseException</code></dd>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Build.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Build.html" target="_top">框架</a></li>
|
||||
<li><a href="Build.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,434 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>BuildCause</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="BuildCause";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildCause.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildCause.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildCause.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 BuildCause" class="title">类 BuildCause</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.BuildCause</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">BuildCause</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#BuildCause()">BuildCause</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object o)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#getShortDescription()">getShortDescription</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#getUpstreamBuild()">getUpstreamBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#getUpstreamProject()">getUpstreamProject</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#getUpstreamUrl()">getUpstreamUrl</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#getUserId()">getUserId</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#getUserName()">getUserName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#setShortDescription(java.lang.String)">setShortDescription</a></strong>(java.lang.String shortDescription)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#setUpstreamBuild(java.lang.Integer)">setUpstreamBuild</a></strong>(java.lang.Integer upstreamBuild)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#setUpstreamProject(java.lang.String)">setUpstreamProject</a></strong>(java.lang.String upstreamProject)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#setUpstreamUrl(java.lang.String)">setUpstreamUrl</a></strong>(java.lang.String upstreamUrl)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#setUserId(java.lang.String)">setUserId</a></strong>(java.lang.String userId)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html#setUserName(java.lang.String)">setUserName</a></strong>(java.lang.String userName)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="BuildCause()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BuildCause</h4>
|
||||
<pre>public BuildCause()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getShortDescription()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getShortDescription</h4>
|
||||
<pre>public java.lang.String getShortDescription()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setShortDescription(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setShortDescription</h4>
|
||||
<pre>public void setShortDescription(java.lang.String shortDescription)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUpstreamBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUpstreamBuild</h4>
|
||||
<pre>public int getUpstreamBuild()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUpstreamBuild(java.lang.Integer)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setUpstreamBuild</h4>
|
||||
<pre>public void setUpstreamBuild(java.lang.Integer upstreamBuild)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUpstreamProject()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUpstreamProject</h4>
|
||||
<pre>public java.lang.String getUpstreamProject()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUpstreamProject(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setUpstreamProject</h4>
|
||||
<pre>public void setUpstreamProject(java.lang.String upstreamProject)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUpstreamUrl()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUpstreamUrl</h4>
|
||||
<pre>public java.lang.String getUpstreamUrl()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUpstreamUrl(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setUpstreamUrl</h4>
|
||||
<pre>public void setUpstreamUrl(java.lang.String upstreamUrl)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUserId()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUserId</h4>
|
||||
<pre>public java.lang.String getUserId()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUserId(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setUserId</h4>
|
||||
<pre>public void setUserId(java.lang.String userId)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUserName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUserName</h4>
|
||||
<pre>public java.lang.String getUserName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUserName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setUserName</h4>
|
||||
<pre>public void setUserName(java.lang.String userName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object o)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildCause.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildCause.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildCause.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,337 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>BuildChangeSet</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="BuildChangeSet";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildChangeSet.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildChangeSet.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildChangeSet.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 BuildChangeSet" class="title">类 BuildChangeSet</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.BuildChangeSet</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">BuildChangeSet</span>
|
||||
extends java.lang.Object</pre>
|
||||
<div class="block">Build ChangeSet.</div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html#BuildChangeSet()">BuildChangeSet</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetItem</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html#getItems()">getItems</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html#getKind()">getKind</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html#setItems(java.util.List)">setItems</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetItem</a>> items)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html#setKind(java.lang.String)">setKind</a></strong>(java.lang.String kind)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="BuildChangeSet()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BuildChangeSet</h4>
|
||||
<pre>public BuildChangeSet()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="setItems(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setItems</h4>
|
||||
<pre>public void setItems(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetItem</a>> items)</pre>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>items</code> - <a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类"><code>BuildChangeSet</code></a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getItems()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getItems</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetItem</a>> getItems()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>list of <a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类"><code>BuildChangeSet</code></a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getKind()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getKind</h4>
|
||||
<pre>public java.lang.String getKind()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>the kind</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setKind(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setKind</h4>
|
||||
<pre>public void setKind(java.lang.String kind)</pre>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>kind</code> - the kind of (usually svn, git).</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildChangeSet.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildCause.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildChangeSet.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildChangeSet.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,332 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>BuildChangeSetAuthor</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="BuildChangeSetAuthor";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildChangeSetAuthor.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildChangeSetAuthor.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 BuildChangeSetAuthor" class="title">类 BuildChangeSetAuthor</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.BuildChangeSetAuthor</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">BuildChangeSetAuthor</span>
|
||||
extends java.lang.Object</pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html#BuildChangeSetAuthor()">BuildChangeSetAuthor</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html#getAbsoluteUrl()">getAbsoluteUrl</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html#getFullName()">getFullName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html#setAbsoluteUrl(java.lang.String)">setAbsoluteUrl</a></strong>(java.lang.String absoluteUrl)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html#setFullName(java.lang.String)">setFullName</a></strong>(java.lang.String fullName)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="BuildChangeSetAuthor()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BuildChangeSetAuthor</h4>
|
||||
<pre>public BuildChangeSetAuthor()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getAbsoluteUrl()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getAbsoluteUrl</h4>
|
||||
<pre>public java.lang.String getAbsoluteUrl()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setAbsoluteUrl(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setAbsoluteUrl</h4>
|
||||
<pre>public void setAbsoluteUrl(java.lang.String absoluteUrl)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getFullName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getFullName</h4>
|
||||
<pre>public java.lang.String getFullName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setFullName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setFullName</h4>
|
||||
<pre>public void setFullName(java.lang.String fullName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildChangeSetAuthor.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildChangeSetAuthor.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,515 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>BuildChangeSetItem</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="BuildChangeSetItem";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildChangeSetItem.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildChangeSetItem.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildChangeSetItem.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 BuildChangeSetItem" class="title">类 BuildChangeSetItem</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.BuildChangeSetItem</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">BuildChangeSetItem</span>
|
||||
extends java.lang.Object</pre>
|
||||
<div class="block">Build ChangeSet Item</div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#BuildChangeSetItem()">BuildChangeSetItem</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<java.lang.String></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#getAffectedPaths()">getAffectedPaths</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetAuthor</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#getAuthor()">getAuthor</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#getComment()">getComment</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#getCommitId()">getCommitId</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#getDate()">getDate</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#getId()">getId</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#getMsg()">getMsg</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetPath</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#getPaths()">getPaths</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#getTimestamp()">getTimestamp</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#setAffectedPaths(java.util.List)">setAffectedPaths</a></strong>(java.util.List<java.lang.String> affectedPaths)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#setAuthor(com.offbytwo.jenkins.model.BuildChangeSetAuthor)">setAuthor</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetAuthor</a> author)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#setComment(java.lang.String)">setComment</a></strong>(java.lang.String comment)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#setCommitId(java.lang.String)">setCommitId</a></strong>(java.lang.String commitId)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#setDate(java.lang.String)">setDate</a></strong>(java.lang.String date)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#setId(java.lang.String)">setId</a></strong>(java.lang.String id)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#setMsg(java.lang.String)">setMsg</a></strong>(java.lang.String msg)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#setPaths(java.util.List)">setPaths</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetPath</a>> paths)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html#setTimestamp(java.lang.String)">setTimestamp</a></strong>(java.lang.String timeStamp)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="BuildChangeSetItem()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BuildChangeSetItem</h4>
|
||||
<pre>public BuildChangeSetItem()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getAffectedPaths()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getAffectedPaths</h4>
|
||||
<pre>public java.util.List<java.lang.String> getAffectedPaths()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setAffectedPaths(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setAffectedPaths</h4>
|
||||
<pre>public void setAffectedPaths(java.util.List<java.lang.String> affectedPaths)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getCommitId()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getCommitId</h4>
|
||||
<pre>public java.lang.String getCommitId()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setCommitId(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setCommitId</h4>
|
||||
<pre>public void setCommitId(java.lang.String commitId)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getTimestamp()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTimestamp</h4>
|
||||
<pre>public java.lang.String getTimestamp()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setTimestamp(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setTimestamp</h4>
|
||||
<pre>public void setTimestamp(java.lang.String timeStamp)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getComment()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getComment</h4>
|
||||
<pre>public java.lang.String getComment()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setComment(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setComment</h4>
|
||||
<pre>public void setComment(java.lang.String comment)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDate()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDate</h4>
|
||||
<pre>public java.lang.String getDate()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setDate(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setDate</h4>
|
||||
<pre>public void setDate(java.lang.String date)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getId()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getId</h4>
|
||||
<pre>public java.lang.String getId()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setId(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setId</h4>
|
||||
<pre>public void setId(java.lang.String id)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getMsg()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getMsg</h4>
|
||||
<pre>public java.lang.String getMsg()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setMsg(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setMsg</h4>
|
||||
<pre>public void setMsg(java.lang.String msg)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getPaths()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getPaths</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetPath</a>> getPaths()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setPaths(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setPaths</h4>
|
||||
<pre>public void setPaths(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetPath</a>> paths)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getAuthor()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getAuthor</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetAuthor</a> getAuthor()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setAuthor(com.offbytwo.jenkins.model.BuildChangeSetAuthor)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setAuthor</h4>
|
||||
<pre>public void setAuthor(<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetAuthor</a> author)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildChangeSetItem.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildChangeSetItem.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildChangeSetItem.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,332 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>BuildChangeSetPath</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="BuildChangeSetPath";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildChangeSetPath.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildChangeSetPath.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildChangeSetPath.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 BuildChangeSetPath" class="title">类 BuildChangeSetPath</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.BuildChangeSetPath</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">BuildChangeSetPath</span>
|
||||
extends java.lang.Object</pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html#BuildChangeSetPath()">BuildChangeSetPath</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html#getEditType()">getEditType</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html#getFile()">getFile</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html#setEditType(java.lang.String)">setEditType</a></strong>(java.lang.String editType)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html#setFile(java.lang.String)">setFile</a></strong>(java.lang.String file)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="BuildChangeSetPath()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BuildChangeSetPath</h4>
|
||||
<pre>public BuildChangeSetPath()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getEditType()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getEditType</h4>
|
||||
<pre>public java.lang.String getEditType()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setEditType(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setEditType</h4>
|
||||
<pre>public void setEditType(java.lang.String editType)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getFile()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getFile</h4>
|
||||
<pre>public java.lang.String getFile()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setFile(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setFile</h4>
|
||||
<pre>public void setFile(java.lang.String file)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildChangeSetPath.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetItem.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildChangeSetPath.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildChangeSetPath.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,420 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>BuildResult</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="BuildResult";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildResult.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildResult.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildResult.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#enum_constant_summary">枚举常量</a> | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#enum_constant_detail">枚举常量</a> | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="枚举 BuildResult" class="title">枚举 BuildResult</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Enum<<a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a>></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.BuildResult</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>所有已实现的接口:</dt>
|
||||
<dd>java.io.Serializable, java.lang.Comparable<<a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a>></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public enum <span class="strong">BuildResult</span>
|
||||
extends java.lang.Enum<<a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a>></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- =========== ENUM CONSTANT SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="enum_constant_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>枚举常量概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="枚举常量概要表, 列表枚举常量和解释">
|
||||
<caption><span>枚举常量</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">枚举常量和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#ABORTED">ABORTED</a></strong></code>
|
||||
<div class="block">This means a job was already running and has been aborted.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#BUILDING">BUILDING</a></strong></code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#CANCELLED">CANCELLED</a></strong></code>
|
||||
<div class="block">This will be the result of a job in cases where it has been cancelled
|
||||
during the time in the queue.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#FAILURE">FAILURE</a></strong></code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#NOT_BUILT">NOT_BUILT</a></strong></code>
|
||||
<div class="block">This is returned if a job has never been built.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#REBUILDING">REBUILDING</a></strong></code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#SUCCESS">SUCCESS</a></strong></code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#UNKNOWN">UNKNOWN</a></strong></code>
|
||||
<div class="block">?</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#UNSTABLE">UNSTABLE</a></strong></code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#valueOf(java.lang.String)">valueOf</a></strong>(java.lang.String name)</code>
|
||||
<div class="block">返回带有指定名称的该类型的枚举常量。</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a>[]</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html#values()">values</a></strong>()</code>
|
||||
<div class="block">按照声明该枚举类型的常量的顺序, 返回
|
||||
包含这些常量的数组。</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Enum">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Enum</h3>
|
||||
<code>compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf</code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ============ ENUM CONSTANT DETAIL =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="enum_constant_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>枚举常量详细资料</h3>
|
||||
<a name="FAILURE">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>FAILURE</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> FAILURE</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="UNSTABLE">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>UNSTABLE</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> UNSTABLE</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="REBUILDING">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>REBUILDING</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> REBUILDING</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="BUILDING">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>BUILDING</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> BUILDING</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="ABORTED">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>ABORTED</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> ABORTED</pre>
|
||||
<div class="block">This means a job was already running and has been aborted.</div>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="SUCCESS">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>SUCCESS</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> SUCCESS</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="UNKNOWN">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>UNKNOWN</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> UNKNOWN</pre>
|
||||
<div class="block">?</div>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="NOT_BUILT">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>NOT_BUILT</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> NOT_BUILT</pre>
|
||||
<div class="block">This is returned if a job has never been built.</div>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="CANCELLED">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>CANCELLED</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> CANCELLED</pre>
|
||||
<div class="block">This will be the result of a job in cases where it has been cancelled
|
||||
during the time in the queue.</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="values()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>values</h4>
|
||||
<pre>public static <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a>[] values()</pre>
|
||||
<div class="block">按照声明该枚举类型的常量的顺序, 返回
|
||||
包含这些常量的数组。该方法可用于迭代
|
||||
常量, 如下所示:
|
||||
<pre>
|
||||
for (BuildResult c : BuildResult.values())
|
||||
System.out.println(c);
|
||||
</pre></div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>按照声明该枚举类型的常量的顺序, 返回
|
||||
包含这些常量的数组</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="valueOf(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>valueOf</h4>
|
||||
<pre>public static <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> valueOf(java.lang.String name)</pre>
|
||||
<div class="block">返回带有指定名称的该类型的枚举常量。
|
||||
字符串必须与用于声明该类型的枚举常量的
|
||||
标识符<i>完全</i>匹配。(不允许有多余
|
||||
的空格字符。)</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>name</code> - 要返回的枚举常量的名称。</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>返回带有指定名称的枚举常量</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.lang.IllegalArgumentException</code> - 如果该枚举类型没有带有指定名称的常量,
|
||||
则抛出 IllegalArgumentException</dd>
|
||||
<dd><code>java.lang.NullPointerException</code> - 如果参数为空值, 则抛出 NullPointerException</dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildResult.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetPath.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildResult.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildResult.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#enum_constant_summary">枚举常量</a> | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#enum_constant_detail">枚举常量</a> | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,811 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>BuildWithDetails</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="BuildWithDetails";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 BuildWithDetails" class="title">类 BuildWithDetails</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.Build</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.BuildWithDetails</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">BuildWithDetails</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></pre>
|
||||
<div class="block">This class represents build information with details about what has been done
|
||||
like duration start and of course the build result.</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="field_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>字段概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="字段概要表, 列表字段和解释">
|
||||
<caption><span>字段</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">字段和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#BUILD_HAS_BEEN_CANCELLED">BUILD_HAS_BEEN_CANCELLED</a></strong></code>
|
||||
<div class="block">This will be returned by the API in cases where the build has been
|
||||
cancelled.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#BUILD_HAS_NEVER_RUN">BUILD_HAS_NEVER_RUN</a></strong></code>
|
||||
<div class="block">This will be returned by the API in cases where the build has never run.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#BuildWithDetails()">BuildWithDetails</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#BuildWithDetails(com.offbytwo.jenkins.model.BuildWithDetails)">BuildWithDetails</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a> details)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.io.InputStream</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#downloadArtifact(com.offbytwo.jenkins.model.Artifact)">downloadArtifact</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Artifact.html" title="com.offbytwo.jenkins.model中的类">Artifact</a> a)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getActions()">getActions</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Artifact.html" title="com.offbytwo.jenkins.model中的类">Artifact</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getArtifacts()">getArtifacts</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getBuiltOn()">getBuiltOn</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildCause.html" title="com.offbytwo.jenkins.model中的类">BuildCause</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getCauses()">getCauses</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSet</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getChangeSet()">getChangeSet</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getConsoleOutputHtml()">getConsoleOutputHtml</a></strong>()</code>
|
||||
<div class="block">The console output with HTML.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getConsoleOutputText()">getConsoleOutputText</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetAuthor</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getCulprits()">getCulprits</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getDescription()">getDescription</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getDisplayName()">getDisplayName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>long</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getDuration()">getDuration</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>long</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getEstimatedDuration()">getEstimatedDuration</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getFullDisplayName()">getFullDisplayName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getId()">getId</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.Map<java.lang.String,java.lang.String></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getParameters()">getParameters</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getResult()">getResult</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>long</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#getTimestamp()">getTimestamp</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#isBuilding()">isBuilding</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#setChangeSet(com.offbytwo.jenkins.model.BuildChangeSet)">setChangeSet</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSet</a> changeSet)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#setCulprits(java.util.List)">setCulprits</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetAuthor</a>> culprits)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#setResult(com.offbytwo.jenkins.model.BuildResult)">setResult</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> result)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#updateDescription(java.lang.String)">updateDescription</a></strong>(java.lang.String description)</code>
|
||||
<div class="block">Update the <code>description</code> of a build.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#updateDescription(java.lang.String, boolean)">updateDescription</a></strong>(java.lang.String description,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">Update the <code>description</code> of a build.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#updateDisplayName(java.lang.String)">updateDisplayName</a></strong>(java.lang.String displayName)</code>
|
||||
<div class="block">Update <code>displayName</code> of a build.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#updateDisplayName(java.lang.String, boolean)">updateDisplayName</a></strong>(java.lang.String displayName,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">Update <code>displayName</code> of a build.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#updateDisplayNameAndDescription(java.lang.String, java.lang.String)">updateDisplayNameAndDescription</a></strong>(java.lang.String displayName,
|
||||
java.lang.String description)</code>
|
||||
<div class="block">Update <code>displayName</code> and the <code>description</code> of a
|
||||
build.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html#updateDisplayNameAndDescription(java.lang.String, java.lang.String, boolean)">updateDisplayNameAndDescription</a></strong>(java.lang.String displayName,
|
||||
java.lang.String description,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">Update <code>displayName</code> and the <code>description</code> of a
|
||||
build.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.Build">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/Build.html#details()">details</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getNumber()">getNumber</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getQueueId()">getQueueId</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getTestReport()">getTestReport</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getTestResult()">getTestResult</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getUrl()">getUrl</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#Stop()">Stop</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</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>字段详细资料</h3>
|
||||
<a name="BUILD_HAS_NEVER_RUN">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>BUILD_HAS_NEVER_RUN</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a> BUILD_HAS_NEVER_RUN</pre>
|
||||
<div class="block">This will be returned by the API in cases where the build has never run.
|
||||
For example <a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>Build.BUILD_HAS_NEVER_RUN</code></a></div>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="BUILD_HAS_BEEN_CANCELLED">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BUILD_HAS_BEEN_CANCELLED</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a> BUILD_HAS_BEEN_CANCELLED</pre>
|
||||
<div class="block">This will be returned by the API in cases where the build has been
|
||||
cancelled. For example <a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_BEEN_CANCELLED"><code>Build.BUILD_HAS_BEEN_CANCELLED</code></a></div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="BuildWithDetails()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>BuildWithDetails</h4>
|
||||
<pre>public BuildWithDetails()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="BuildWithDetails(com.offbytwo.jenkins.model.BuildWithDetails)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BuildWithDetails</h4>
|
||||
<pre>public BuildWithDetails(<a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类">BuildWithDetails</a> details)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getArtifacts()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getArtifacts</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Artifact.html" title="com.offbytwo.jenkins.model中的类">Artifact</a>> getArtifacts()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isBuilding()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isBuilding</h4>
|
||||
<pre>public boolean isBuilding()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getCauses()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getCauses</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildCause.html" title="com.offbytwo.jenkins.model中的类">BuildCause</a>> getCauses()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="updateDisplayNameAndDescription(java.lang.String, java.lang.String, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>updateDisplayNameAndDescription</h4>
|
||||
<pre>public void updateDisplayNameAndDescription(java.lang.String displayName,
|
||||
java.lang.String description,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Update <code>displayName</code> and the <code>description</code> of a
|
||||
build.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>displayName</code> - The new displayName which should be set.</dd><dd><code>description</code> - The description which should be set.</dd><dd><code>crumbFlag</code> - <code>true</code> or <code>false</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="updateDisplayNameAndDescription(java.lang.String, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>updateDisplayNameAndDescription</h4>
|
||||
<pre>public void updateDisplayNameAndDescription(java.lang.String displayName,
|
||||
java.lang.String description)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Update <code>displayName</code> and the <code>description</code> of a
|
||||
build.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>displayName</code> - The new displayName which should be set.</dd><dd><code>description</code> - The description which should be set.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="updateDisplayName(java.lang.String, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>updateDisplayName</h4>
|
||||
<pre>public void updateDisplayName(java.lang.String displayName,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Update <code>displayName</code> of a build.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>displayName</code> - The new displayName which should be set.</dd><dd><code>crumbFlag</code> - <code>true</code> or <code>false</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="updateDisplayName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>updateDisplayName</h4>
|
||||
<pre>public void updateDisplayName(java.lang.String displayName)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Update <code>displayName</code> of a build.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>displayName</code> - The new displayName which should be set.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="updateDescription(java.lang.String, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>updateDescription</h4>
|
||||
<pre>public void updateDescription(java.lang.String description,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Update the <code>description</code> of a build.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>description</code> - The description which should be set.</dd><dd><code>crumbFlag</code> - <code>true</code> or <code>false</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="updateDescription(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>updateDescription</h4>
|
||||
<pre>public void updateDescription(java.lang.String description)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Update the <code>description</code> of a build.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>description</code> - The description which should be set.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDescription()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDescription</h4>
|
||||
<pre>public java.lang.String getDescription()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDuration()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDuration</h4>
|
||||
<pre>public long getDuration()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getEstimatedDuration()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getEstimatedDuration</h4>
|
||||
<pre>public long getEstimatedDuration()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getFullDisplayName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getFullDisplayName</h4>
|
||||
<pre>public java.lang.String getFullDisplayName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDisplayName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDisplayName</h4>
|
||||
<pre>public java.lang.String getDisplayName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getId()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getId</h4>
|
||||
<pre>public java.lang.String getId()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getTimestamp()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTimestamp</h4>
|
||||
<pre>public long getTimestamp()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getResult()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getResult</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> getResult()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getBuiltOn()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getBuiltOn</h4>
|
||||
<pre>public java.lang.String getBuiltOn()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getActions()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getActions</h4>
|
||||
<pre>public java.util.List getActions()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getParameters()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getParameters</h4>
|
||||
<pre>public java.util.Map<java.lang.String,java.lang.String> getParameters()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getConsoleOutputText()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getConsoleOutputText</h4>
|
||||
<pre>public java.lang.String getConsoleOutputText()
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The console output of the build. The line separation is done by
|
||||
<code>CR+LF</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of a failure.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getConsoleOutputHtml()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getConsoleOutputHtml</h4>
|
||||
<pre>public java.lang.String getConsoleOutputHtml()
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">The console output with HTML.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The console output as HTML.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getChangeSet()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getChangeSet</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSet</a> getChangeSet()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setChangeSet(com.offbytwo.jenkins.model.BuildChangeSet)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setChangeSet</h4>
|
||||
<pre>public void setChangeSet(<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSet.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSet</a> changeSet)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getCulprits()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getCulprits</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetAuthor</a>> getCulprits()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setCulprits(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setCulprits</h4>
|
||||
<pre>public void setCulprits(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/BuildChangeSetAuthor.html" title="com.offbytwo.jenkins.model中的类">BuildChangeSetAuthor</a>> culprits)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setResult(com.offbytwo.jenkins.model.BuildResult)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setResult</h4>
|
||||
<pre>public void setResult(<a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举">BuildResult</a> result)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="downloadArtifact(com.offbytwo.jenkins.model.Artifact)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>downloadArtifact</h4>
|
||||
<pre>public java.io.InputStream downloadArtifact(<a href="../../../../com/offbytwo/jenkins/model/Artifact.html" title="com.offbytwo.jenkins.model中的类">Artifact</a> a)
|
||||
throws java.io.IOException,
|
||||
java.net.URISyntaxException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd>
|
||||
<dd><code>java.net.URISyntaxException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Build.html#equals(java.lang.Object)">equals</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Build.html#hashCode()">hashCode</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/BuildWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildResult.html" title="com.offbytwo.jenkins.model中的枚举"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/BuildWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="BuildWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,368 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>CauseAction</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="CauseAction";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/CauseAction.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/CauseAction.html" target="_top">框架</a></li>
|
||||
<li><a href="CauseAction.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 CauseAction" class="title">类 CauseAction</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.CauseAction</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">CauseAction</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html#CauseAction()">CauseAction</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html#getShortDescription()">getShortDescription</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html#getUserId()">getUserId</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html#getUserName()">getUserName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html#setShortDescription(java.lang.String)">setShortDescription</a></strong>(java.lang.String shortDescription)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html#setUserId(java.lang.String)">setUserId</a></strong>(java.lang.String userId)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html#setUserName(java.lang.String)">setUserName</a></strong>(java.lang.String userName)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="CauseAction()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>CauseAction</h4>
|
||||
<pre>public CauseAction()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getShortDescription()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getShortDescription</h4>
|
||||
<pre>public java.lang.String getShortDescription()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setShortDescription(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setShortDescription</h4>
|
||||
<pre>public void setShortDescription(java.lang.String shortDescription)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUserId()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUserId</h4>
|
||||
<pre>public java.lang.String getUserId()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUserId(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setUserId</h4>
|
||||
<pre>public void setUserId(java.lang.String userId)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUserName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUserName</h4>
|
||||
<pre>public java.lang.String getUserName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUserName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setUserName</h4>
|
||||
<pre>public void setUserName(java.lang.String userName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/CauseAction.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BuildWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/CauseAction.html" target="_top">框架</a></li>
|
||||
<li><a href="CauseAction.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,363 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Computer</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Computer";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Computer.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Computer.html" target="_top">框架</a></li>
|
||||
<li><a href="Computer.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 Computer" class="title">类 Computer</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.Computer</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>直接已知子类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类">ComputerWithDetails</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">Computer</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Kelly Plummer</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Computer.html#Computer()">Computer</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Computer.html#Computer(java.lang.String)">Computer</a></strong>(java.lang.String displayName)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类">ComputerWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Computer.html#details()">details</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Computer.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Computer.html#getComputers()">getComputers</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Computer.html#getDisplayName()">getDisplayName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Computer.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Computer.html#setComputer(java.util.List)">setComputer</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a>> computer)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Computer()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>Computer</h4>
|
||||
<pre>public Computer()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="Computer(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Computer</h4>
|
||||
<pre>public Computer(java.lang.String displayName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getComputers()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getComputers</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a>> getComputers()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setComputer(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setComputer</h4>
|
||||
<pre>public void setComputer(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a>> computer)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDisplayName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDisplayName</h4>
|
||||
<pre>public java.lang.String getDisplayName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="details()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>details</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类">ComputerWithDetails</a> details()
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Computer.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/CauseAction.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Computer.html" target="_top">框架</a></li>
|
||||
<li><a href="Computer.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,394 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:04 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>ComputerSet</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="ComputerSet";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ComputerSet.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ComputerSet.html" target="_top">框架</a></li>
|
||||
<li><a href="ComputerSet.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 ComputerSet" class="title">类 ComputerSet</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.ComputerSet</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">ComputerSet</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#ComputerSet()">ComputerSet</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#getBusyExecutors()">getBusyExecutors</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类">ComputerWithDetails</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#getComputers()">getComputers</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#getDisplayName()">getDisplayName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#getTotalExecutors()">getTotalExecutors</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#setBusyExecutors(int)">setBusyExecutors</a></strong>(int busyExecutors)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#setComputer(java.util.List)">setComputer</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类">ComputerWithDetails</a>> computers)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#setDisplayName(java.lang.String)">setDisplayName</a></strong>(java.lang.String displayName)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html#setTotalExecutors(int)">setTotalExecutors</a></strong>(int totalExecutors)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="ComputerSet()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>ComputerSet</h4>
|
||||
<pre>public ComputerSet()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getBusyExecutors()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getBusyExecutors</h4>
|
||||
<pre>public int getBusyExecutors()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setBusyExecutors(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setBusyExecutors</h4>
|
||||
<pre>public void setBusyExecutors(int busyExecutors)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDisplayName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDisplayName</h4>
|
||||
<pre>public java.lang.String getDisplayName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setDisplayName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setDisplayName</h4>
|
||||
<pre>public void setDisplayName(java.lang.String displayName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getTotalExecutors()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTotalExecutors</h4>
|
||||
<pre>public int getTotalExecutors()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setTotalExecutors(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setTotalExecutors</h4>
|
||||
<pre>public void setTotalExecutors(int totalExecutors)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getComputers()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getComputers</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类">ComputerWithDetails</a>> getComputers()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setComputer(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setComputer</h4>
|
||||
<pre>public void setComputer(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类">ComputerWithDetails</a>> computers)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ComputerSet.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ComputerSet.html" target="_top">框架</a></li>
|
||||
<li><a href="ComputerSet.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,545 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>ComputerWithDetails</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="ComputerWithDetails";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ComputerWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Crumb.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ComputerWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="ComputerWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 ComputerWithDetails" class="title">类 ComputerWithDetails</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.Computer</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.ComputerWithDetails</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">ComputerWithDetails</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#ComputerWithDetails()">ComputerWithDetails</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<java.util.Map></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getActions()">getActions</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getDisplayName()">getDisplayName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Executor.html" title="com.offbytwo.jenkins.model中的类">Executor</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getExecutors()">getExecutors</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.Boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getIdle()">getIdle</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.Boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getJnlp()">getJnlp</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.Boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getLaunchSupported()">getLaunchSupported</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类">LoadStatistics</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getLoadStatistics()">getLoadStatistics</a></strong>()</code>
|
||||
<div class="block">This will explicitly get the whole statistics for the given computer
|
||||
(node) name.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.Boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getManualLaunchAllowed()">getManualLaunchAllowed</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.Map<java.lang.String,java.util.Map></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getMonitorData()">getMonitorData</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.Integer</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getNumExecutors()">getNumExecutors</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.Boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getOffline()">getOffline</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html" title="com.offbytwo.jenkins.model中的类">OfflineCause</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getOfflineCause()">getOfflineCause</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getOfflineCauseReason()">getOfflineCauseReason</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<java.util.Map></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getOneOffExecutors()">getOneOffExecutors</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.Boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#getTemporarilyOffline()">getTemporarilyOffline</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#toggleOffline()">toggleOffline</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html#toggleOffline(boolean)">toggleOffline</a></strong>(boolean crumbFlag)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.Computer">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/Computer.html#details()">details</a>, <a href="../../../../com/offbytwo/jenkins/model/Computer.html#getComputers()">getComputers</a>, <a href="../../../../com/offbytwo/jenkins/model/Computer.html#setComputer(java.util.List)">setComputer</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="ComputerWithDetails()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>ComputerWithDetails</h4>
|
||||
<pre>public ComputerWithDetails()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getDisplayName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDisplayName</h4>
|
||||
<pre>public java.lang.String getDisplayName()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Computer.html#getDisplayName()">getDisplayName</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a></code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getActions()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getActions</h4>
|
||||
<pre>public java.util.List<java.util.Map> getActions()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getExecutors()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getExecutors</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Executor.html" title="com.offbytwo.jenkins.model中的类">Executor</a>> getExecutors()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getIdle()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getIdle</h4>
|
||||
<pre>public java.lang.Boolean getIdle()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getJnlp()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getJnlp</h4>
|
||||
<pre>public java.lang.Boolean getJnlp()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLaunchSupported()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLaunchSupported</h4>
|
||||
<pre>public java.lang.Boolean getLaunchSupported()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLoadStatistics()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLoadStatistics</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类">LoadStatistics</a> getLoadStatistics()
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">This will explicitly get the whole statistics for the given computer
|
||||
(node) name.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类"><code>LoadStatistics</code></a></dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="toggleOffline(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>toggleOffline</h4>
|
||||
<pre>public void toggleOffline(boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="toggleOffline()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>toggleOffline</h4>
|
||||
<pre>public void toggleOffline()
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getManualLaunchAllowed()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getManualLaunchAllowed</h4>
|
||||
<pre>public java.lang.Boolean getManualLaunchAllowed()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getMonitorData()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getMonitorData</h4>
|
||||
<pre>public java.util.Map<java.lang.String,java.util.Map> getMonitorData()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getNumExecutors()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getNumExecutors</h4>
|
||||
<pre>public java.lang.Integer getNumExecutors()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getOffline()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getOffline</h4>
|
||||
<pre>public java.lang.Boolean getOffline()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getOfflineCause()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getOfflineCause</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html" title="com.offbytwo.jenkins.model中的类">OfflineCause</a> getOfflineCause()
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getOfflineCauseReason()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getOfflineCauseReason</h4>
|
||||
<pre>public java.lang.String getOfflineCauseReason()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getOneOffExecutors()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getOneOffExecutors</h4>
|
||||
<pre>public java.util.List<java.util.Map> getOneOffExecutors()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getTemporarilyOffline()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTemporarilyOffline</h4>
|
||||
<pre>public java.lang.Boolean getTemporarilyOffline()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Computer.html#equals(java.lang.Object)">equals</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a></code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Computer.html#hashCode()">hashCode</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Computer.html" title="com.offbytwo.jenkins.model中的类">Computer</a></code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ComputerWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ComputerSet.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Crumb.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ComputerWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="ComputerWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,300 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Crumb</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Crumb";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Crumb.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Executable.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Crumb.html" target="_top">框架</a></li>
|
||||
<li><a href="Crumb.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 Crumb" class="title">类 Crumb</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.Crumb</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">Crumb</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Adrien Lecharpentier
|
||||
<a href="mailto:adrien.lecharpentier@gmail.com">adrien.
|
||||
lecharpentier@gmail.com</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Crumb.html#Crumb()">Crumb</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Crumb.html#Crumb(java.lang.String, java.lang.String)">Crumb</a></strong>(java.lang.String crumbRequestField,
|
||||
java.lang.String crumb)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Crumb.html#getCrumb()">getCrumb</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Crumb.html#getCrumbRequestField()">getCrumbRequestField</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Crumb()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>Crumb</h4>
|
||||
<pre>public Crumb()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="Crumb(java.lang.String, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Crumb</h4>
|
||||
<pre>public Crumb(java.lang.String crumbRequestField,
|
||||
java.lang.String crumb)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getCrumbRequestField()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getCrumbRequestField</h4>
|
||||
<pre>public java.lang.String getCrumbRequestField()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getCrumb()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>getCrumb</h4>
|
||||
<pre>public java.lang.String getCrumb()</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Crumb.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ComputerWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Executable.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Crumb.html" target="_top">框架</a></li>
|
||||
<li><a href="Crumb.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,330 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Executable</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Executable";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Executable.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Crumb.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Executor.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Executable.html" target="_top">框架</a></li>
|
||||
<li><a href="Executable.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 Executable" class="title">类 Executable</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.Executable</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">Executable</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executable.html#Executable()">Executable</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executable.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.Long</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executable.html#getNumber()">getNumber</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executable.html#getUrl()">getUrl</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executable.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executable.html#setNumber(java.lang.Long)">setNumber</a></strong>(java.lang.Long number)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executable.html#setUrl(java.lang.String)">setUrl</a></strong>(java.lang.String url)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Executable()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Executable</h4>
|
||||
<pre>public Executable()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getNumber()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getNumber</h4>
|
||||
<pre>public java.lang.Long getNumber()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setNumber(java.lang.Long)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setNumber</h4>
|
||||
<pre>public void setNumber(java.lang.Long number)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUrl()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUrl</h4>
|
||||
<pre>public java.lang.String getUrl()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUrl(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setUrl</h4>
|
||||
<pre>public void setUrl(java.lang.String url)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Executable.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Crumb.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Executor.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Executable.html" target="_top">框架</a></li>
|
||||
<li><a href="Executable.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,440 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Executor</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Executor";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Executor.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Executable.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ExtractHeader.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Executor.html" target="_top">框架</a></li>
|
||||
<li><a href="Executor.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 Executor" class="title">类 Executor</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.Executor</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">Executor</span>
|
||||
extends java.lang.Object</pre>
|
||||
<div class="block">This class is based on informations which can be extracted from an running
|
||||
Jenkins instance via
|
||||
<a href="http://jenkins-server/computer/api/schema">http://jenkins-server/
|
||||
computer/api/schema</a>.</div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#Executor()">Executor</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#getCurrentExecutable()">getCurrentExecutable</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#getCurrentWorkUnit()">getCurrentWorkUnit</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.Boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#getIdle()">getIdle</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.Boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#getLikelyStuck()">getLikelyStuck</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#getNumber()">getNumber</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#getProgress()">getProgress</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#setCurrentExecutable(com.offbytwo.jenkins.model.Job)">setCurrentExecutable</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a> currentExecutable)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#setCurrentWorkUnit(com.offbytwo.jenkins.model.Job)">setCurrentWorkUnit</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a> currentWorkUnit)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#setIdle(java.lang.Boolean)">setIdle</a></strong>(java.lang.Boolean idle)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#setLikelyStuck(java.lang.Boolean)">setLikelyStuck</a></strong>(java.lang.Boolean likelyStuck)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#setNumber(int)">setNumber</a></strong>(int number)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Executor.html#setProgress(int)">setProgress</a></strong>(int progress)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Executor()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Executor</h4>
|
||||
<pre>public Executor()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getCurrentExecutable()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getCurrentExecutable</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a> getCurrentExecutable()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setCurrentExecutable(com.offbytwo.jenkins.model.Job)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setCurrentExecutable</h4>
|
||||
<pre>public void setCurrentExecutable(<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a> currentExecutable)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getCurrentWorkUnit()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getCurrentWorkUnit</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a> getCurrentWorkUnit()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setCurrentWorkUnit(com.offbytwo.jenkins.model.Job)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setCurrentWorkUnit</h4>
|
||||
<pre>public void setCurrentWorkUnit(<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a> currentWorkUnit)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getIdle()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getIdle</h4>
|
||||
<pre>public java.lang.Boolean getIdle()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setIdle(java.lang.Boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setIdle</h4>
|
||||
<pre>public void setIdle(java.lang.Boolean idle)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLikelyStuck()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLikelyStuck</h4>
|
||||
<pre>public java.lang.Boolean getLikelyStuck()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setLikelyStuck(java.lang.Boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setLikelyStuck</h4>
|
||||
<pre>public void setLikelyStuck(java.lang.Boolean likelyStuck)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getNumber()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getNumber</h4>
|
||||
<pre>public int getNumber()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setNumber(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setNumber</h4>
|
||||
<pre>public void setNumber(int number)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getProgress()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getProgress</h4>
|
||||
<pre>public int getProgress()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setProgress(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setProgress</h4>
|
||||
<pre>public void setProgress(int progress)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Executor.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Executable.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ExtractHeader.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Executor.html" target="_top">框架</a></li>
|
||||
<li><a href="Executor.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,282 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>ExtractHeader</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="ExtractHeader";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ExtractHeader.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Executor.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ExtractHeader.html" target="_top">框架</a></li>
|
||||
<li><a href="ExtractHeader.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 ExtractHeader" class="title">类 ExtractHeader</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.ExtractHeader</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">ExtractHeader</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ExtractHeader.html#ExtractHeader()">ExtractHeader</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ExtractHeader.html#getLocation()">getLocation</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ExtractHeader.html#setLocation(java.lang.String)">setLocation</a></strong>(java.lang.String value)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="ExtractHeader()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>ExtractHeader</h4>
|
||||
<pre>public ExtractHeader()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="setLocation(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setLocation</h4>
|
||||
<pre>public void setLocation(java.lang.String value)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLocation()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>getLocation</h4>
|
||||
<pre>public java.lang.String getLocation()</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ExtractHeader.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Executor.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ExtractHeader.html" target="_top">框架</a></li>
|
||||
<li><a href="ExtractHeader.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,391 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>FolderJob</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="FolderJob";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/FolderJob.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ExtractHeader.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/FolderJob.html" target="_top">框架</a></li>
|
||||
<li><a href="FolderJob.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 FolderJob" class="title">类 FolderJob</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.Job</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.FolderJob</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">FolderJob</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html#FolderJob()">FolderJob</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html#FolderJob(java.lang.String, java.lang.String)">FolderJob</a></strong>(java.lang.String name,
|
||||
java.lang.String url)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html#createFolder(java.lang.String)">createFolder</a></strong>(java.lang.String folderName)</code>
|
||||
<div class="block">Create a folder on the server (as a subfolder of this folder)</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html#createFolder(java.lang.String, java.lang.Boolean)">createFolder</a></strong>(java.lang.String folderName,
|
||||
java.lang.Boolean crumbFlag)</code>
|
||||
<div class="block">Create a folder on the server (as a subfolder of this folder)</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html#getDisplayName()">getDisplayName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html#getJob(java.lang.String)">getJob</a></strong>(java.lang.String name)</code>
|
||||
<div class="block">Get a job in this folder by name</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.Map<java.lang.String,<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html#getJobs()">getJobs</a></strong>()</code>
|
||||
<div class="block">Get a list of all the defined jobs in this folder</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html#isFolder()">isFolder</a></strong>()</code>
|
||||
<div class="block">Determine if this FolderJob object is a valid folder or not.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.Job">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/Job.html#build()">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map, boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#details()">details</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#equals(java.lang.Object)">equals</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getFileFromWorkspace(java.lang.String)">getFileFromWorkspace</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getName()">getName</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getUrl()">getUrl</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#hashCode()">hashCode</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="FolderJob()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>FolderJob</h4>
|
||||
<pre>public FolderJob()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="FolderJob(java.lang.String, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>FolderJob</h4>
|
||||
<pre>public FolderJob(java.lang.String name,
|
||||
java.lang.String url)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getDisplayName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDisplayName</h4>
|
||||
<pre>public java.lang.String getDisplayName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isFolder()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isFolder</h4>
|
||||
<pre>public boolean isFolder()</pre>
|
||||
<div class="block">Determine if this FolderJob object is a valid folder or not.
|
||||
|
||||
(internally: if jobs list exists)</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>true if this job is a folder.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getJobs()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getJobs</h4>
|
||||
<pre>public java.util.Map<java.lang.String,<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> getJobs()</pre>
|
||||
<div class="block">Get a list of all the defined jobs in this folder</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>list of defined jobs (summary level, for details @see Job#details</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getJob(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getJob</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a> getJob(java.lang.String name)</pre>
|
||||
<div class="block">Get a job in this folder by name</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>name</code> - the name of the job.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>the given job</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="createFolder(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>createFolder</h4>
|
||||
<pre>public void createFolder(java.lang.String folderName)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Create a folder on the server (as a subfolder of this folder)</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>folderName</code> - name of the folder to be created.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="createFolder(java.lang.String, java.lang.Boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>createFolder</h4>
|
||||
<pre>public void createFolder(java.lang.String folderName,
|
||||
java.lang.Boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Create a folder on the server (as a subfolder of this folder)</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>folderName</code> - name of the folder to be created.</dd><dd><code>crumbFlag</code> - true/false.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/FolderJob.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ExtractHeader.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/FolderJob.html" target="_top">框架</a></li>
|
||||
<li><a href="FolderJob.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,360 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>HourMinSec10</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="HourMinSec10";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/HourMinSec10.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/HourMinSec10.html" target="_top">框架</a></li>
|
||||
<li><a href="HourMinSec10.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 HourMinSec10" class="title">类 HourMinSec10</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.HourMinSec10</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">HourMinSec10</span>
|
||||
extends java.lang.Object</pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise
|
||||
|
||||
TODO: Has someone a better name for the class?</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html#HourMinSec10()">HourMinSec10</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html#getHour()">getHour</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html#getMin()">getMin</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html#getSec10()">getSec10</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html#setHour(com.offbytwo.jenkins.model.Statis)">setHour</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a> hour)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html#setMin(com.offbytwo.jenkins.model.Statis)">setMin</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a> min)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html#setSec10(com.offbytwo.jenkins.model.Statis)">setSec10</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a> sec10)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="HourMinSec10()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>HourMinSec10</h4>
|
||||
<pre>public HourMinSec10()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getHour()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getHour</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a> getHour()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setHour(com.offbytwo.jenkins.model.Statis)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setHour</h4>
|
||||
<pre>public void setHour(<a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a> hour)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getMin()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getMin</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a> getMin()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setMin(com.offbytwo.jenkins.model.Statis)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setMin</h4>
|
||||
<pre>public void setMin(<a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a> min)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getSec10()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getSec10</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a> getSec10()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setSec10(com.offbytwo.jenkins.model.Statis)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setSec10</h4>
|
||||
<pre>public void setSec10(<a href="../../../../com/offbytwo/jenkins/model/Statis.html" title="com.offbytwo.jenkins.model中的类">Statis</a> sec10)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/HourMinSec10.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/HourMinSec10.html" target="_top">框架</a></li>
|
||||
<li><a href="HourMinSec10.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,457 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Job</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Job";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Job.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Job.html" target="_top">框架</a></li>
|
||||
<li><a href="Job.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 Job" class="title">类 Job</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.Job</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>直接已知子类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/model/FolderJob.html" title="com.offbytwo.jenkins.model中的类">FolderJob</a>, <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html" title="com.offbytwo.jenkins.model中的类">JobWithDetails</a>, <a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html" title="com.offbytwo.jenkins.model中的类">LabelWithDetails</a>, <a href="../../../../com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类">MavenJob</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">Job</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#Job()">Job</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#Job(java.lang.String, java.lang.String)">Job</a></strong>(java.lang.String name,
|
||||
java.lang.String url)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#build()">build</a></strong>()</code>
|
||||
<div class="block">Trigger a build without parameters</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#build(boolean)">build</a></strong>(boolean crumbFlag)</code>
|
||||
<div class="block">Trigger a build with crumbFlag.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map)">build</a></strong>(java.util.Map<java.lang.String,java.lang.String> params)</code>
|
||||
<div class="block">Trigger a parameterized build</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map, boolean)">build</a></strong>(java.util.Map<java.lang.String,java.lang.String> params,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">Trigger a parameterized build</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html" title="com.offbytwo.jenkins.model中的类">JobWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#details()">details</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object o)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#getFileFromWorkspace(java.lang.String)">getFileFromWorkspace</a></strong>(java.lang.String fileName)</code>
|
||||
<div class="block">Get a file from workspace.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#getName()">getName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#getUrl()">getUrl</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Job.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Job()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>Job</h4>
|
||||
<pre>public Job()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="Job(java.lang.String, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Job</h4>
|
||||
<pre>public Job(java.lang.String name,
|
||||
java.lang.String url)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getName</h4>
|
||||
<pre>public java.lang.String getName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUrl()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUrl</h4>
|
||||
<pre>public java.lang.String getUrl()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="details()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>details</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html" title="com.offbytwo.jenkins.model中的类">JobWithDetails</a> details()
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getFileFromWorkspace(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getFileFromWorkspace</h4>
|
||||
<pre>public java.lang.String getFileFromWorkspace(java.lang.String fileName)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Get a file from workspace.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>fileName</code> - The name of the file to download from workspace. You can
|
||||
also access files which are in sub folders of the workspace.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>The string which contains the content of the file.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="build()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>build</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a> build()
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Trigger a build without parameters</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类"><code>QueueReference</code></a> for further analysis of the queued build.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="build(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>build</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a> build(boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Trigger a build with crumbFlag.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>crumbFlag</code> - true or false.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd><a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类"><code>QueueReference</code></a> for further analysis of the queued build.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="build(java.util.Map)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>build</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a> build(java.util.Map<java.lang.String,java.lang.String> params)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Trigger a parameterized build</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>params</code> - the job parameters</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd><a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类"><code>QueueReference</code></a> for further analysis of the queued build.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="build(java.util.Map, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>build</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类">QueueReference</a> build(java.util.Map<java.lang.String,java.lang.String> params,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Trigger a parameterized build</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>params</code> - the job parameters</dd><dd><code>crumbFlag</code> - determines whether crumb flag is used</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd><a href="../../../../com/offbytwo/jenkins/model/QueueReference.html" title="com.offbytwo.jenkins.model中的类"><code>QueueReference</code></a> for further analysis of the queued build.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object o)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Job.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Job.html" target="_top">框架</a></li>
|
||||
<li><a href="Job.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,308 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>JobConfiguration</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="JobConfiguration";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JobConfiguration.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/JobConfiguration.html" target="_top">框架</a></li>
|
||||
<li><a href="JobConfiguration.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 JobConfiguration" class="title">类 JobConfiguration</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.JobConfiguration</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">JobConfiguration</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html#JobConfiguration(java.lang.String)">JobConfiguration</a></strong>(java.lang.String configXml)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html" title="com.offbytwo.jenkins.model中的类">JobConfiguration</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html#addStringParam(java.lang.String, java.lang.String, java.lang.String)">addStringParam</a></strong>(java.lang.String name,
|
||||
java.lang.String desc,
|
||||
java.lang.String defaultValue)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html#asXml()">asXml</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html#getConfigXml()">getConfigXml</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html#setConfigXml(java.lang.String)">setConfigXml</a></strong>(java.lang.String configXml)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="JobConfiguration(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>JobConfiguration</h4>
|
||||
<pre>public JobConfiguration(java.lang.String configXml)
|
||||
throws org.dom4j.DocumentException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>org.dom4j.DocumentException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="addStringParam(java.lang.String, java.lang.String, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>addStringParam</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html" title="com.offbytwo.jenkins.model中的类">JobConfiguration</a> addStringParam(java.lang.String name,
|
||||
java.lang.String desc,
|
||||
java.lang.String defaultValue)
|
||||
throws javax.xml.bind.JAXBException,
|
||||
org.dom4j.DocumentException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>javax.xml.bind.JAXBException</code></dd>
|
||||
<dd><code>org.dom4j.DocumentException</code></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="asXml()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>asXml</h4>
|
||||
<pre>public java.lang.String asXml()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getConfigXml()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getConfigXml</h4>
|
||||
<pre>public java.lang.String getConfigXml()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setConfigXml(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>setConfigXml</h4>
|
||||
<pre>public void setConfigXml(java.lang.String configXml)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JobConfiguration.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/JobConfiguration.html" target="_top">框架</a></li>
|
||||
<li><a href="JobConfiguration.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,922 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>JobWithDetails</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="JobWithDetails";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JobWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/JobWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="JobWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 JobWithDetails" class="title">类 JobWithDetails</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.Job</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.JobWithDetails</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">JobWithDetails</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="field_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>字段概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="字段概要表, 列表字段和解释">
|
||||
<caption><span>字段</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">字段和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#EMPTY_DESCRIPTION">EMPTY_DESCRIPTION</a></strong></code>
|
||||
<div class="block">Empty description to be used for <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#updateDescription(java.lang.String)"><code>updateDescription(String)</code></a> or
|
||||
<a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#updateDescription(java.lang.String, boolean)"><code>updateDescription(String, boolean)</code></a>.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#JobWithDetails()">JobWithDetails</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#clearDescription()">clearDescription</a></strong>()</code>
|
||||
<div class="block">clear the description of a job.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#clearDescription(boolean)">clearDescription</a></strong>(boolean crumbFlag)</code>
|
||||
<div class="block">clear the description of a job.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getAllBuilds()">getAllBuilds</a></strong>()</code>
|
||||
<div class="block">This method will give you back all builds which exists independent of the
|
||||
number.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getAllBuilds(com.offbytwo.jenkins.helper.Range)">getAllBuilds</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</code>
|
||||
<div class="block">
|
||||
{M,N}: From the M-th element (inclusive) to the N-th element
|
||||
(exclusive).</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getBuildByNumber(int)">getBuildByNumber</a></strong>(int buildNumber)</code>
|
||||
<div class="block">Get a build by the given buildNumber.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getBuilds()">getBuilds</a></strong>()</code>
|
||||
<div class="block">This method will give you back the builds of a particular job.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getDescription()">getDescription</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getDisplayName()">getDisplayName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getDownstreamProjects()">getDownstreamProjects</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getFirstBuild()">getFirstBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastBuild()">getLastBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastCompletedBuild()">getLastCompletedBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastFailedBuild()">getLastFailedBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastStableBuild()">getLastStableBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastSuccessfulBuild()">getLastSuccessfulBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastUnstableBuild()">getLastUnstableBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastUnsuccessfulBuild()">getLastUnsuccessfulBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getNextBuildNumber()">getNextBuildNumber</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类">QueueItem</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getQueueItem()">getQueueItem</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getUpstreamProjects()">getUpstreamProjects</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hasDescription()">hasDescription</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hasFirstBuildRun()">hasFirstBuildRun</a></strong>()</code>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#firstBuild"><code>firstBuild</code></a> has been run or not.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hasLastBuildRun()">hasLastBuildRun</a></strong>()</code>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastBuild"><code>lastBuild</code></a> has been run or not.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hasLastCompletedBuildRun()">hasLastCompletedBuildRun</a></strong>()</code>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastCompletedBuild"><code>lastCompletedBuild</code></a> has been run or not.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hasLastFailedBuildRun()">hasLastFailedBuildRun</a></strong>()</code>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastFailedBuild"><code>lastFailedBuild</code></a> has been run or not.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hasLastStableBuildRun()">hasLastStableBuildRun</a></strong>()</code>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastStableBuild"><code>lastStableBuild</code></a> has been run or not.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hasLastSuccessfulBuildRun()">hasLastSuccessfulBuildRun</a></strong>()</code>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastSuccessfulBuild"><code>lastSuccessfulBuild</code></a> has been run or not.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hasLastUnstableBuildRun()">hasLastUnstableBuildRun</a></strong>()</code>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastUnstableBuild"><code>lastUnstableBuild</code></a> has been run or not.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#hasLastUnsuccessfulBuildRun()">hasLastUnsuccessfulBuildRun</a></strong>()</code>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastUnsuccessfulBuild"><code>lastUnsuccessfulBuild</code></a> has been run or not.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#isBuildable()">isBuildable</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#isInQueue()">isInQueue</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#updateDescription(java.lang.String)">updateDescription</a></strong>(java.lang.String description)</code>
|
||||
<div class="block">Update the <code>description</code> of a Job.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#updateDescription(java.lang.String, boolean)">updateDescription</a></strong>(java.lang.String description,
|
||||
boolean crumbFlag)</code>
|
||||
<div class="block">Update the <code>description</code> of a Job.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.Job">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/Job.html#build()">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map, boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#details()">details</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getFileFromWorkspace(java.lang.String)">getFileFromWorkspace</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getName()">getName</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getUrl()">getUrl</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</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>字段详细资料</h3>
|
||||
<a name="EMPTY_DESCRIPTION">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>EMPTY_DESCRIPTION</h4>
|
||||
<pre>public static final java.lang.String EMPTY_DESCRIPTION</pre>
|
||||
<div class="block">Empty description to be used for <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#updateDescription(java.lang.String)"><code>updateDescription(String)</code></a> or
|
||||
<a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#updateDescription(java.lang.String, boolean)"><code>updateDescription(String, boolean)</code></a>.</div>
|
||||
<dl><dt><span class="strong">另请参阅:</span></dt><dd><a href="../../../../constant-values.html#com.offbytwo.jenkins.model.JobWithDetails.EMPTY_DESCRIPTION">常量字段值</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="JobWithDetails()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>JobWithDetails</h4>
|
||||
<pre>public JobWithDetails()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getDescription()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDescription</h4>
|
||||
<pre>public java.lang.String getDescription()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hasDescription()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hasDescription</h4>
|
||||
<pre>public boolean hasDescription()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDisplayName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDisplayName</h4>
|
||||
<pre>public java.lang.String getDisplayName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isBuildable()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isBuildable</h4>
|
||||
<pre>public boolean isBuildable()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isInQueue()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isInQueue</h4>
|
||||
<pre>public boolean isInQueue()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getBuilds()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getBuilds</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a>> getBuilds()</pre>
|
||||
<div class="block">This method will give you back the builds of a particular job.
|
||||
|
||||
<b>Note: Jenkins limits the number of results to a maximum of 100 builds
|
||||
which you will get back.</b>. In case you have more than 100 build you
|
||||
won't get back all builds via this method. In such cases you need to use
|
||||
<a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getAllBuilds()"><code>getAllBuilds()</code></a>.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>the list of <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><code>Build</code></a>. In case of no builds have been
|
||||
executed yet return <code>Collections.emptyList()</code>.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getAllBuilds()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getAllBuilds</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a>> getAllBuilds()
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">This method will give you back all builds which exists independent of the
|
||||
number. You should be aware that this can be much in some cases if you
|
||||
have more than 100 builds which is by default limited by Jenkins
|
||||
<a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getBuilds()"><code>getBuilds()</code></a>. This method limits it to particular information
|
||||
which can be later used to get supplemental information about a
|
||||
particular build <a href="../../../../com/offbytwo/jenkins/model/Build.html#details()"><code>Build.details()</code></a> to reduce the amount of data
|
||||
which needed to be transfered.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>the list of <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><code>Build</code></a>. In case of no builds have been
|
||||
executed yet return <code>Collections.emptyList()</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - In case of failure.</dd><dt><span class="strong">另请参阅:</span></dt><dd><a href="https://issues.jenkins-ci.org/browse/JENKINS-30238">Jenkins
|
||||
Issue</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getAllBuilds(com.offbytwo.jenkins.helper.Range)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getAllBuilds</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a>> getAllBuilds(<a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block"><ul>
|
||||
<li>{M,N}: From the M-th element (inclusive) to the N-th element
|
||||
(exclusive).</li>
|
||||
<li>{M,}: From the M-th element (inclusive) to the end.</li>
|
||||
<li>{,N}: From the first element (inclusive) to the N-th element
|
||||
(exclusive). The same as {0,N}.</li>
|
||||
<li>{N}: Just retrieve the N-th element. The same as {N,N+1}.</li>
|
||||
</ul>
|
||||
|
||||
<b>Note: At the moment there seemed to be no option to get the number of
|
||||
existing builds for a job. The only option is to get all builds via
|
||||
<a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getAllBuilds()"><code>getAllBuilds()</code></a>.</b></div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>range</code> - <a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类"><code>Range</code></a></dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>the list of <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><code>Build</code></a>. In case of no builds have been
|
||||
executed yet return <code>Collections.emptyList()</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getFirstBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getFirstBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getFirstBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>the first build which has been executed or
|
||||
<a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>Build.BUILD_HAS_NEVER_RUN</code></a> if the build has never been
|
||||
run.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hasFirstBuildRun()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hasFirstBuildRun</h4>
|
||||
<pre>public boolean hasFirstBuildRun()</pre>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#firstBuild"><code>firstBuild</code></a> has been run or not.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><code>true</code> if a build has been run <code>false</code>
|
||||
otherwise.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getLastBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastBuild. If <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastBuild"><code>lastBuild</code></a> has never been run
|
||||
<a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>Build.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hasLastBuildRun()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hasLastBuildRun</h4>
|
||||
<pre>public boolean hasLastBuildRun()</pre>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastBuild"><code>lastBuild</code></a> has been run or not.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><code>true</code> if the last build has been run
|
||||
<code>false</code> otherwise.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastCompletedBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastCompletedBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getLastCompletedBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastCompletedBuild. If <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastCompletedBuild"><code>lastCompletedBuild</code></a> has never
|
||||
been run <a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>Build.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hasLastCompletedBuildRun()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hasLastCompletedBuildRun</h4>
|
||||
<pre>public boolean hasLastCompletedBuildRun()</pre>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastCompletedBuild"><code>lastCompletedBuild</code></a> has been run or not.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><code>true</code> if the last completed build has been run
|
||||
<code>false</code> otherwise.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastFailedBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastFailedBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getLastFailedBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastFailedBuild. If <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastFailedBuild"><code>lastFailedBuild</code></a> has never been
|
||||
run <a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>Build.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hasLastFailedBuildRun()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hasLastFailedBuildRun</h4>
|
||||
<pre>public boolean hasLastFailedBuildRun()</pre>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastFailedBuild"><code>lastFailedBuild</code></a> has been run or not.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><code>true</code> if the last failed build has been run
|
||||
<code>false</code> otherwise.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastStableBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastStableBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getLastStableBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastStableBuild. If <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastStableBuild"><code>lastStableBuild</code></a> has never been
|
||||
run <a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>Build.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hasLastStableBuildRun()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hasLastStableBuildRun</h4>
|
||||
<pre>public boolean hasLastStableBuildRun()</pre>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastStableBuild"><code>lastStableBuild</code></a> has been run or not.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><code>true</code> if the last stable build has been run
|
||||
<code>false</code> otherwise.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastSuccessfulBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastSuccessfulBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getLastSuccessfulBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastSuccessfulBuild. If <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastSuccessfulBuild"><code>lastSuccessfulBuild</code></a> has
|
||||
never been run <a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>Build.BUILD_HAS_NEVER_RUN</code></a> will be
|
||||
returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hasLastSuccessfulBuildRun()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hasLastSuccessfulBuildRun</h4>
|
||||
<pre>public boolean hasLastSuccessfulBuildRun()</pre>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastSuccessfulBuild"><code>lastSuccessfulBuild</code></a> has been run or not.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><code>true</code> if the last successful build has been run
|
||||
<code>false</code> otherwise.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastUnstableBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastUnstableBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getLastUnstableBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastUnstableBuild. If <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastUnstableBuild"><code>lastUnstableBuild</code></a> has never
|
||||
been run <a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>Build.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hasLastUnstableBuildRun()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hasLastUnstableBuildRun</h4>
|
||||
<pre>public boolean hasLastUnstableBuildRun()</pre>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastUnstableBuild"><code>lastUnstableBuild</code></a> has been run or not.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><code>true</code> if the last unstable build has been run
|
||||
<code>false</code> otherwise.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastUnsuccessfulBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastUnsuccessfulBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getLastUnsuccessfulBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastUnsuccessfulBuild. If <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastUnsuccessfulBuild"><code>lastUnsuccessfulBuild</code></a> has
|
||||
never been run <a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_NEVER_RUN"><code>Build.BUILD_HAS_NEVER_RUN</code></a> will be
|
||||
returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hasLastUnsuccessfulBuildRun()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hasLastUnsuccessfulBuildRun</h4>
|
||||
<pre>public boolean hasLastUnsuccessfulBuildRun()</pre>
|
||||
<div class="block">Check if the <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#lastUnsuccessfulBuild"><code>lastUnsuccessfulBuild</code></a> has been run or not.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd><code>true</code> if the last unsuccessful build has been run
|
||||
<code>false</code> otherwise.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getNextBuildNumber()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getNextBuildNumber</h4>
|
||||
<pre>public int getNextBuildNumber()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDownstreamProjects()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDownstreamProjects</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> getDownstreamProjects()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>the list of downstream projects. If no downstream projects exist
|
||||
just return an empty list <code>Collections.emptyList()</code>.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUpstreamProjects()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUpstreamProjects</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> getUpstreamProjects()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>the list of upstream projects. If no upstream projects exist just
|
||||
return an empty list <code>Collections.emptyList()</code>.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getQueueItem()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getQueueItem</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类">QueueItem</a> getQueueItem()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getBuildByNumber(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getBuildByNumber</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getBuildByNumber(int buildNumber)</pre>
|
||||
<div class="block">Get a build by the given buildNumber.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>buildNumber</code> - The number to select the build by.</dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>The <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><code>Build</code></a> selected by the given buildnumber</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="updateDescription(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>updateDescription</h4>
|
||||
<pre>public void updateDescription(java.lang.String description)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Update the <code>description</code> of a Job.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>description</code> - The description which should be set. If you like to
|
||||
set an empty description you should use
|
||||
<a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#EMPTY_DESCRIPTION"><code>EMPTY_DESCRIPTION</code></a>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="updateDescription(java.lang.String, boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>updateDescription</h4>
|
||||
<pre>public void updateDescription(java.lang.String description,
|
||||
boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">Update the <code>description</code> of a Job.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>description</code> - The description which should be set. If you like to
|
||||
set an empty description you should use
|
||||
<a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#EMPTY_DESCRIPTION"><code>EMPTY_DESCRIPTION</code></a>.</dd><dd><code>crumbFlag</code> - <code>true</code> or <code>false</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="clearDescription()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>clearDescription</h4>
|
||||
<pre>public void clearDescription()
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">clear the description of a job.</div>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="clearDescription(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>clearDescription</h4>
|
||||
<pre>public void clearDescription(boolean crumbFlag)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">clear the description of a job.</div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>crumbFlag</code> - <code>true</code> or <code>false</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of errors.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Job.html#hashCode()">hashCode</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Job.html#equals(java.lang.Object)">equals</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/JobWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/JobConfiguration.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/JobWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="JobWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,449 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>LabelWithDetails</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="LabelWithDetails";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/LabelWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/LabelWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="LabelWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 LabelWithDetails" class="title">类 LabelWithDetails</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.Job</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.LabelWithDetails</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">LabelWithDetails</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#LabelWithDetails()">LabelWithDetails</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object o)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getActions()">getActions</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getClouds()">getClouds</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getDescription()">getDescription</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.Integer</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getIdleExecutors()">getIdleExecutors</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getName()">getName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getNodeName()">getNodeName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getNodes()">getNodes</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.Boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getOffline()">getOffline</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getPropertiesList()">getPropertiesList</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getTiedJobs()">getTiedJobs</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.Integer</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#getTotalExecutors()">getTotalExecutors</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.Job">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/Job.html#build()">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map, boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#details()">details</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getFileFromWorkspace(java.lang.String)">getFileFromWorkspace</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getUrl()">getUrl</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="LabelWithDetails()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>LabelWithDetails</h4>
|
||||
<pre>public LabelWithDetails()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getName</h4>
|
||||
<pre>public java.lang.String getName()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Job.html#getName()">getName</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getActions()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getActions</h4>
|
||||
<pre>public java.util.List getActions()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getClouds()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getClouds</h4>
|
||||
<pre>public java.util.List getClouds()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDescription()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDescription</h4>
|
||||
<pre>public java.lang.String getDescription()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getIdleExecutors()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getIdleExecutors</h4>
|
||||
<pre>public java.lang.Integer getIdleExecutors()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getNodes()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getNodes</h4>
|
||||
<pre>public java.util.List getNodes()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getNodeName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getNodeName</h4>
|
||||
<pre>public java.lang.String getNodeName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getOffline()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getOffline</h4>
|
||||
<pre>public java.lang.Boolean getOffline()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getTiedJobs()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTiedJobs</h4>
|
||||
<pre>public java.util.List getTiedJobs()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getTotalExecutors()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTotalExecutors</h4>
|
||||
<pre>public java.lang.Integer getTotalExecutors()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getPropertiesList()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getPropertiesList</h4>
|
||||
<pre>public java.util.List getPropertiesList()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object o)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Job.html#equals(java.lang.Object)">equals</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code><a href="../../../../com/offbytwo/jenkins/model/Job.html#hashCode()">hashCode</a></code> 在类中 <code><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/LabelWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/LabelWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="LabelWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,374 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>LoadStatistics</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="LoadStatistics";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/LoadStatistics.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MainView.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/LoadStatistics.html" target="_top">框架</a></li>
|
||||
<li><a href="LoadStatistics.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 LoadStatistics" class="title">类 LoadStatistics</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.LoadStatistics</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">LoadStatistics</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
<div class="block">This class will contain the information about the load statistics which can
|
||||
be extracted by using the following url:
|
||||
|
||||
http://server/computer/nodename/loadStatistics/api/json?pretty&depth=3</div>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html#LoadStatistics()">LoadStatistics</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html#getBusyExecutors()">getBusyExecutors</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html#getQueueLength()">getQueueLength</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html#getTotalExecutors()">getTotalExecutors</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html#setBusyExecutors(com.offbytwo.jenkins.model.HourMinSec10)">setBusyExecutors</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a> busyExecutors)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html#setQueueLength(com.offbytwo.jenkins.model.HourMinSec10)">setQueueLength</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a> queueLength)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html#setTotalExecutors(com.offbytwo.jenkins.model.HourMinSec10)">setTotalExecutors</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a> totalExecutors)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="LoadStatistics()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>LoadStatistics</h4>
|
||||
<pre>public LoadStatistics()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getBusyExecutors()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getBusyExecutors</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a> getBusyExecutors()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setBusyExecutors(com.offbytwo.jenkins.model.HourMinSec10)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setBusyExecutors</h4>
|
||||
<pre>public void setBusyExecutors(<a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a> busyExecutors)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getQueueLength()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getQueueLength</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a> getQueueLength()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setQueueLength(com.offbytwo.jenkins.model.HourMinSec10)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setQueueLength</h4>
|
||||
<pre>public void setQueueLength(<a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a> queueLength)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getTotalExecutors()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTotalExecutors</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a> getTotalExecutors()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setTotalExecutors(com.offbytwo.jenkins.model.HourMinSec10)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setTotalExecutors</h4>
|
||||
<pre>public void setTotalExecutors(<a href="../../../../com/offbytwo/jenkins/model/HourMinSec10.html" title="com.offbytwo.jenkins.model中的类">HourMinSec10</a> totalExecutors)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/LoadStatistics.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/LabelWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MainView.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/LoadStatistics.html" target="_top">框架</a></li>
|
||||
<li><a href="LoadStatistics.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,338 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>MainView</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="MainView";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MainView.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MainView.html" target="_top">框架</a></li>
|
||||
<li><a href="MainView.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 MainView" class="title">类 MainView</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.MainView</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>直接已知子类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/model/View.html" title="com.offbytwo.jenkins.model中的类">View</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">MainView</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MainView.html#MainView()">MainView</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MainView.html#MainView(com.offbytwo.jenkins.model.Job...)">MainView</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>... jobs)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MainView.html#MainView(java.util.List, java.util.List)">MainView</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> jobs,
|
||||
java.util.List<<a href="../../../../com/offbytwo/jenkins/model/View.html" title="com.offbytwo.jenkins.model中的类">View</a>> views)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MainView.html#getJobs()">getJobs</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/View.html" title="com.offbytwo.jenkins.model中的类">View</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MainView.html#getViews()">getViews</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MainView.html#setJobs(java.util.List)">setJobs</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> jobs)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MainView.html#setViews(java.util.List)">setViews</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/View.html" title="com.offbytwo.jenkins.model中的类">View</a>> views)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="MainView()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>MainView</h4>
|
||||
<pre>public MainView()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="MainView(java.util.List, java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>MainView</h4>
|
||||
<pre>public MainView(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> jobs,
|
||||
java.util.List<<a href="../../../../com/offbytwo/jenkins/model/View.html" title="com.offbytwo.jenkins.model中的类">View</a>> views)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="MainView(com.offbytwo.jenkins.model.Job...)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>MainView</h4>
|
||||
<pre>public MainView(<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>... jobs)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getJobs()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getJobs</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> getJobs()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setJobs(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setJobs</h4>
|
||||
<pre>public void setJobs(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> jobs)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getViews()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getViews</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/View.html" title="com.offbytwo.jenkins.model中的类">View</a>> getViews()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setViews(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>setViews</h4>
|
||||
<pre>public void setViews(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/View.html" title="com.offbytwo.jenkins.model中的类">View</a>> views)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MainView.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/LoadStatistics.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MainView.html" target="_top">框架</a></li>
|
||||
<li><a href="MainView.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,464 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>MavenArtifact</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="MavenArtifact";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenArtifact.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MainView.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenArtifact.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenArtifact.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 MavenArtifact" class="title">类 MavenArtifact</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.MavenArtifact</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">MavenArtifact</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#MavenArtifact()">MavenArtifact</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#getArtifactId()">getArtifactId</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#getCanonicalName()">getCanonicalName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#getClassifier()">getClassifier</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#getFileName()">getFileName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#getGroupId()">getGroupId</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#getMd5sum()">getMd5sum</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#getType()">getType</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#getVersion()">getVersion</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#setArtifactId(java.lang.String)">setArtifactId</a></strong>(java.lang.String artifactId)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#setCanonicalName(java.lang.String)">setCanonicalName</a></strong>(java.lang.String canonicalName)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#setClassifier(java.lang.String)">setClassifier</a></strong>(java.lang.String classifier)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#setFileName(java.lang.String)">setFileName</a></strong>(java.lang.String fileName)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#setGroupId(java.lang.String)">setGroupId</a></strong>(java.lang.String groupId)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#setMd5sum(java.lang.String)">setMd5sum</a></strong>(java.lang.String md5sum)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#setType(java.lang.String)">setType</a></strong>(java.lang.String type)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html#setVersion(java.lang.String)">setVersion</a></strong>(java.lang.String version)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="MavenArtifact()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>MavenArtifact</h4>
|
||||
<pre>public MavenArtifact()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getArtifactId()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getArtifactId</h4>
|
||||
<pre>public java.lang.String getArtifactId()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setArtifactId(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setArtifactId</h4>
|
||||
<pre>public void setArtifactId(java.lang.String artifactId)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getCanonicalName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getCanonicalName</h4>
|
||||
<pre>public java.lang.String getCanonicalName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setCanonicalName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setCanonicalName</h4>
|
||||
<pre>public void setCanonicalName(java.lang.String canonicalName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getClassifier()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getClassifier</h4>
|
||||
<pre>public java.lang.String getClassifier()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setClassifier(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setClassifier</h4>
|
||||
<pre>public void setClassifier(java.lang.String classifier)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getFileName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getFileName</h4>
|
||||
<pre>public java.lang.String getFileName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setFileName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setFileName</h4>
|
||||
<pre>public void setFileName(java.lang.String fileName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getGroupId()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getGroupId</h4>
|
||||
<pre>public java.lang.String getGroupId()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setGroupId(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setGroupId</h4>
|
||||
<pre>public void setGroupId(java.lang.String groupId)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getMd5sum()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getMd5sum</h4>
|
||||
<pre>public java.lang.String getMd5sum()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setMd5sum(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setMd5sum</h4>
|
||||
<pre>public void setMd5sum(java.lang.String md5sum)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getType()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getType</h4>
|
||||
<pre>public java.lang.String getType()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setType(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setType</h4>
|
||||
<pre>public void setType(java.lang.String type)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getVersion()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getVersion</h4>
|
||||
<pre>public java.lang.String getVersion()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setVersion(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>setVersion</h4>
|
||||
<pre>public void setVersion(java.lang.String version)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenArtifact.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MainView.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenArtifact.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenArtifact.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,358 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>MavenBuild</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="MavenBuild";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenBuild.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenBuild.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenBuild.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 MavenBuild" class="title">类 MavenBuild</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.Build</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.MavenBuild</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">MavenBuild</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- =========== FIELD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="field_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>字段概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="字段概要表, 列表字段和解释">
|
||||
<caption><span>字段</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">字段和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>static <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#BUILD_HAS_NEVER_RUN">BUILD_HAS_NEVER_RUN</a></strong></code>
|
||||
<div class="block">This will be returned by the API in cases where no build has ever
|
||||
been executed like <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastBuild()"><code>JobWithDetails.getLastBuild()</code></a> etc.</div>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="fields_inherited_from_class_com.offbytwo.jenkins.model.Build">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的字段 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/Build.html#BUILD_HAS_BEEN_CANCELLED">BUILD_HAS_BEEN_CANCELLED</a></code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#MavenBuild()">MavenBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#MavenBuild(com.offbytwo.jenkins.model.Build)">MavenBuild</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> from)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#MavenBuild(int, java.lang.String)">MavenBuild</a></strong>(int number,
|
||||
java.lang.String url)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenModule.html" title="com.offbytwo.jenkins.model中的类">MavenModule</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#getMavenModule()">getMavenModule</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.Build">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/Build.html#details()">details</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#equals(java.lang.Object)">equals</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getNumber()">getNumber</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getQueueId()">getQueueId</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getTestReport()">getTestReport</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getTestResult()">getTestResult</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#getUrl()">getUrl</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#hashCode()">hashCode</a>, <a href="../../../../com/offbytwo/jenkins/model/Build.html#Stop()">Stop</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</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>字段详细资料</h3>
|
||||
<a name="BUILD_HAS_NEVER_RUN">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>BUILD_HAS_NEVER_RUN</h4>
|
||||
<pre>public static final <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> BUILD_HAS_NEVER_RUN</pre>
|
||||
<div class="block">This will be returned by the API in cases where no build has ever
|
||||
been executed like <a href="../../../../com/offbytwo/jenkins/model/JobWithDetails.html#getLastBuild()"><code>JobWithDetails.getLastBuild()</code></a> etc.</div>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="MavenBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>MavenBuild</h4>
|
||||
<pre>public MavenBuild()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="MavenBuild(com.offbytwo.jenkins.model.Build)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>MavenBuild</h4>
|
||||
<pre>public MavenBuild(<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> from)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="MavenBuild(int, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>MavenBuild</h4>
|
||||
<pre>public MavenBuild(int number,
|
||||
java.lang.String url)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getMavenModule()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>getMavenModule</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenModule.html" title="com.offbytwo.jenkins.model中的类">MavenModule</a> getMavenModule()
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenBuild.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenBuild.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenBuild.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li><a href="#field_summary">字段</a> | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li><a href="#field_detail">字段</a> | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,302 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>MavenJob</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="MavenJob";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenJob.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenJob.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenJob.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 MavenJob" class="title">类 MavenJob</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.Job</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.MavenJob</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<dl>
|
||||
<dt>直接已知子类:</dt>
|
||||
<dd><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html" title="com.offbytwo.jenkins.model中的类">MavenJobWithDetails</a></dd>
|
||||
</dl>
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">MavenJob</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJob.html#MavenJob()">MavenJob</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJob.html#MavenJob(java.lang.String, java.lang.String)">MavenJob</a></strong>(java.lang.String name,
|
||||
java.lang.String url)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html" title="com.offbytwo.jenkins.model中的类">MavenJobWithDetails</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJob.html#mavenDetails()">mavenDetails</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.Job">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/Job.html#build()">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map, boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#details()">details</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#equals(java.lang.Object)">equals</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getFileFromWorkspace(java.lang.String)">getFileFromWorkspace</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getName()">getName</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getUrl()">getUrl</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#hashCode()">hashCode</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="MavenJob()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>MavenJob</h4>
|
||||
<pre>public MavenJob()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="MavenJob(java.lang.String, java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>MavenJob</h4>
|
||||
<pre>public MavenJob(java.lang.String name,
|
||||
java.lang.String url)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="mavenDetails()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>mavenDetails</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html" title="com.offbytwo.jenkins.model中的类">MavenJobWithDetails</a> mavenDetails()
|
||||
throws java.io.IOException</pre>
|
||||
<dl><dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code></dd></dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenJob.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenJob.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenJob.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,567 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>MavenJobWithDetails</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="MavenJobWithDetails";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenJobWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenModule.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenJobWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenJobWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 MavenJobWithDetails" class="title">类 MavenJobWithDetails</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.Job</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.MavenJob</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.MavenJobWithDetails</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">MavenJobWithDetails</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类">MavenJob</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#MavenJobWithDetails()">MavenJobWithDetails</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getAllBuilds()">getAllBuilds</a></strong>()</code>
|
||||
<div class="block">This method will give you back all builds which exists independent of the
|
||||
number.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getAllBuilds(com.offbytwo.jenkins.helper.Range)">getAllBuilds</a></strong>(<a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)</code>
|
||||
<div class="block">
|
||||
{M,N}: From the M-th element (inclusive) to the N-th element
|
||||
(exclusive).</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getBuildByNumber(int)">getBuildByNumber</a></strong>(int buildNumber)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getBuilds()">getBuilds</a></strong>()</code>
|
||||
<div class="block">This method will give you back the builds of a particular job.</div>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getDisplayName()">getDisplayName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getDownstreamProjects()">getDownstreamProjects</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getFirstBuild()">getFirstBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getLastBuild()">getLastBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getLastCompletedBuild()">getLastCompletedBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getLastFailedBuild()">getLastFailedBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getLastStableBuild()">getLastStableBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getLastSuccessfulBuild()">getLastSuccessfulBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getLastUnstableBuild()">getLastUnstableBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getLastUnsuccessfulBuild()">getLastUnsuccessfulBuild</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getNextBuildNumber()">getNextBuildNumber</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getUpstreamProjects()">getUpstreamProjects</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#isBuildable()">isBuildable</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.MavenJob">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类">MavenJob</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/MavenJob.html#mavenDetails()">mavenDetails</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.Job">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/Job.html#build()">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#build(java.util.Map, boolean)">build</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#details()">details</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#equals(java.lang.Object)">equals</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getFileFromWorkspace(java.lang.String)">getFileFromWorkspace</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getName()">getName</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#getUrl()">getUrl</a>, <a href="../../../../com/offbytwo/jenkins/model/Job.html#hashCode()">hashCode</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="MavenJobWithDetails()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>MavenJobWithDetails</h4>
|
||||
<pre>public MavenJobWithDetails()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getDisplayName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDisplayName</h4>
|
||||
<pre>public java.lang.String getDisplayName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isBuildable()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isBuildable</h4>
|
||||
<pre>public boolean isBuildable()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getBuilds()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getBuilds</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a>> getBuilds()</pre>
|
||||
<div class="block">This method will give you back the builds of a particular job.
|
||||
|
||||
<b>Note: Jenkins limits the number of results to a maximum of 100 builds
|
||||
which you will get back.</b>. In case you have more than 100 build you
|
||||
won't get back all builds via this method. In such cases you need to use
|
||||
<a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getAllBuilds()"><code>getAllBuilds()</code></a>.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>the list of <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类"><code>MavenBuild</code></a>. In case of no builds have been
|
||||
executed yet <code>Collections.emptyList()</code> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getAllBuilds()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getAllBuilds</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a>> getAllBuilds()
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block">This method will give you back all builds which exists independent of the
|
||||
number. You should be aware that this can be much in some cases if you
|
||||
have more than 100 builds which is by default limited by Jenkins
|
||||
<a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getBuilds()"><code>getBuilds()</code></a>. This method limits it to particular information
|
||||
which can be later used to get supplemental information about a
|
||||
particular build <a href="../../../../com/offbytwo/jenkins/model/Build.html#details()"><code>Build.details()</code></a> to reduce the amount of data
|
||||
which needed to be transfered.</div>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>the list of <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><code>Build</code></a>. In case of no builds have been
|
||||
executed yet return <code>Collections.emptyList()</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - In case of failure.</dd><dt><span class="strong">另请参阅:</span></dt><dd><a href="https://issues.jenkins-ci.org/browse/JENKINS-30238">Jenkins
|
||||
Issue</a></dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getAllBuilds(com.offbytwo.jenkins.helper.Range)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getAllBuilds</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a>> getAllBuilds(<a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类">Range</a> range)
|
||||
throws java.io.IOException</pre>
|
||||
<div class="block"><ul>
|
||||
<li>{M,N}: From the M-th element (inclusive) to the N-th element
|
||||
(exclusive).</li>
|
||||
<li>{M,}: From the M-th element (inclusive) to the end.</li>
|
||||
<li>{,N}: From the first element (inclusive) to the N-th element
|
||||
(exclusive). The same as {0,N}.</li>
|
||||
<li>{N}: Just retrieve the N-th element. The same as {N,N+1}.</li>
|
||||
</ul>
|
||||
|
||||
<b>Note: At the moment there seemed to be no option to get the number of
|
||||
existing builds for a job. The only option is to get all builds via
|
||||
<a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#getAllBuilds()"><code>getAllBuilds()</code></a>.</b></div>
|
||||
<dl><dt><span class="strong">参数:</span></dt><dd><code>range</code> - <a href="../../../../com/offbytwo/jenkins/helper/Range.html" title="com.offbytwo.jenkins.helper中的类"><code>Range</code></a></dd>
|
||||
<dt><span class="strong">返回:</span></dt><dd>the list of <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类"><code>Build</code></a>. In case of no builds have been
|
||||
executed yet return <code>Collections.emptyList()</code>.</dd>
|
||||
<dt><span class="strong">抛出:</span></dt>
|
||||
<dd><code>java.io.IOException</code> - in case of an error.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getFirstBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getFirstBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> getFirstBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The firstBuild. If <a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#firstBuild"><code>firstBuild</code></a> has never been run
|
||||
<a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#BUILD_HAS_NEVER_RUN"><code>MavenBuild.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> getLastBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastBuild. If <a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#lastBuild"><code>lastBuild</code></a> has never been run
|
||||
<a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#BUILD_HAS_NEVER_RUN"><code>MavenBuild.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastCompletedBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastCompletedBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> getLastCompletedBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastCompletedBuild. If <a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#lastCompletedBuild"><code>lastCompletedBuild</code></a> has never
|
||||
been run <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#BUILD_HAS_NEVER_RUN"><code>MavenBuild.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastFailedBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastFailedBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> getLastFailedBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastFailedBuild. If <a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#lastFailedBuild"><code>lastFailedBuild</code></a> has never been
|
||||
run <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#BUILD_HAS_NEVER_RUN"><code>MavenBuild.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastStableBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastStableBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> getLastStableBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastStableBuild. If <a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#lastStableBuild"><code>lastStableBuild</code></a> has never been
|
||||
run <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#BUILD_HAS_NEVER_RUN"><code>MavenBuild.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastSuccessfulBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastSuccessfulBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> getLastSuccessfulBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastSuccessfulBuild. If <a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#lastSuccessfulBuild"><code>lastSuccessfulBuild</code></a> has
|
||||
never been run <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#BUILD_HAS_NEVER_RUN"><code>MavenBuild.BUILD_HAS_NEVER_RUN</code></a> will be
|
||||
returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastUnstableBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastUnstableBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> getLastUnstableBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastUnstableBuild. If <a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#lastUnstableBuild"><code>lastUnstableBuild</code></a> has never
|
||||
been run <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#BUILD_HAS_NEVER_RUN"><code>MavenBuild.BUILD_HAS_NEVER_RUN</code></a> will be returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLastUnsuccessfulBuild()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLastUnsuccessfulBuild</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> getLastUnsuccessfulBuild()</pre>
|
||||
<dl><dt><span class="strong">返回:</span></dt><dd>The lastUnsuccessfulBuild. If <a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html#lastUnsuccessfulBuild"><code>lastUnsuccessfulBuild</code></a> has
|
||||
never been run <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html#BUILD_HAS_NEVER_RUN"><code>MavenBuild.BUILD_HAS_NEVER_RUN</code></a> will be
|
||||
returned.</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getNextBuildNumber()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getNextBuildNumber</h4>
|
||||
<pre>public int getNextBuildNumber()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDownstreamProjects()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDownstreamProjects</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> getDownstreamProjects()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUpstreamProjects()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUpstreamProjects</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Job.html" title="com.offbytwo.jenkins.model中的类">Job</a>> getUpstreamProjects()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getBuildByNumber(int)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>getBuildByNumber</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenBuild.html" title="com.offbytwo.jenkins.model中的类">MavenBuild</a> getBuildByNumber(int buildNumber)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenJobWithDetails.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenJob.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenModule.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenJobWithDetails.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenJobWithDetails.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,269 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>MavenModule</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="MavenModule";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenModule.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenModule.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenModule.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 MavenModule" class="title">类 MavenModule</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.MavenModule</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">MavenModule</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModule.html#MavenModule()">MavenModule</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html" title="com.offbytwo.jenkins.model中的类">MavenModuleRecord</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModule.html#getModuleRecords()">getModuleRecords</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="MavenModule()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>MavenModule</h4>
|
||||
<pre>public MavenModule()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getModuleRecords()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>getModuleRecords</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html" title="com.offbytwo.jenkins.model中的类">MavenModuleRecord</a>> getModuleRecords()</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenModule.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenJobWithDetails.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenModule.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenModule.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,386 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>MavenModuleRecord</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="MavenModuleRecord";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenModuleRecord.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenModule.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenModuleRecord.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenModuleRecord.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 MavenModuleRecord" class="title">类 MavenModuleRecord</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.MavenModuleRecord</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">MavenModuleRecord</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#MavenModuleRecord()">MavenModuleRecord</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#getAttachedArtifacts()">getAttachedArtifacts</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#getMainArtifact()">getMainArtifact</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#getParent()">getParent</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#getPomArtifact()">getPomArtifact</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#getUrl()">getUrl</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#setAttachedArtifacts(java.util.List)">setAttachedArtifacts</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a>> attachedArtifacts)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#setMainArtifact(com.offbytwo.jenkins.model.MavenArtifact)">setMainArtifact</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a> mainArtifact)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#setParent(com.offbytwo.jenkins.model.Build)">setParent</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> parent)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#setPomArtifact(com.offbytwo.jenkins.model.MavenArtifact)">setPomArtifact</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a> pomArtifact)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html#setUrl(java.lang.String)">setUrl</a></strong>(java.lang.String url)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="MavenModuleRecord()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>MavenModuleRecord</h4>
|
||||
<pre>public MavenModuleRecord()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getAttachedArtifacts()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getAttachedArtifacts</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a>> getAttachedArtifacts()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setAttachedArtifacts(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setAttachedArtifacts</h4>
|
||||
<pre>public void setAttachedArtifacts(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a>> attachedArtifacts)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getParent()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getParent</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> getParent()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setParent(com.offbytwo.jenkins.model.Build)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setParent</h4>
|
||||
<pre>public void setParent(<a href="../../../../com/offbytwo/jenkins/model/Build.html" title="com.offbytwo.jenkins.model中的类">Build</a> parent)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getMainArtifact()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getMainArtifact</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a> getMainArtifact()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setMainArtifact(com.offbytwo.jenkins.model.MavenArtifact)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setMainArtifact</h4>
|
||||
<pre>public void setMainArtifact(<a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a> mainArtifact)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getPomArtifact()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getPomArtifact</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a> getPomArtifact()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setPomArtifact(com.offbytwo.jenkins.model.MavenArtifact)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setPomArtifact</h4>
|
||||
<pre>public void setPomArtifact(<a href="../../../../com/offbytwo/jenkins/model/MavenArtifact.html" title="com.offbytwo.jenkins.model中的类">MavenArtifact</a> pomArtifact)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUrl()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUrl</h4>
|
||||
<pre>public java.lang.String getUrl()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUrl(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>setUrl</h4>
|
||||
<pre>public void setUrl(java.lang.String url)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/MavenModuleRecord.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenModule.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/MavenModuleRecord.html" target="_top">框架</a></li>
|
||||
<li><a href="MavenModuleRecord.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,344 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>OfflineCause</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="OfflineCause";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/OfflineCause.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/OfflineCause.html" target="_top">框架</a></li>
|
||||
<li><a href="OfflineCause.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 OfflineCause" class="title">类 OfflineCause</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.OfflineCause</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">OfflineCause</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html#OfflineCause()">OfflineCause</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html#getDescription()">getDescription</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.Long</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html#getTimestamp()">getTimestamp</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html#setDescription(java.lang.String)">setDescription</a></strong>(java.lang.String description)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html#setTimestamp(java.lang.Long)">setTimestamp</a></strong>(java.lang.Long timestamp)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="OfflineCause()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>OfflineCause</h4>
|
||||
<pre>public OfflineCause()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getTimestamp()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getTimestamp</h4>
|
||||
<pre>public java.lang.Long getTimestamp()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDescription()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDescription</h4>
|
||||
<pre>public java.lang.String getDescription()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setTimestamp(java.lang.Long)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setTimestamp</h4>
|
||||
<pre>public void setTimestamp(java.lang.Long timestamp)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setDescription(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>setDescription</h4>
|
||||
<pre>public void setDescription(java.lang.String description)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/OfflineCause.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/MavenModuleRecord.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/OfflineCause.html" target="_top">框架</a></li>
|
||||
<li><a href="OfflineCause.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,295 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>ParameterDefinitions</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="ParameterDefinitions";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ParameterDefinitions.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ParametersDefinitionProperty.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ParameterDefinitions.html" target="_top">框架</a></li>
|
||||
<li><a href="ParameterDefinitions.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 ParameterDefinitions" class="title">类 ParameterDefinitions</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.ParameterDefinitions</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">ParameterDefinitions</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html#ParameterDefinitions()">ParameterDefinitions</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html#ParameterDefinitions(java.util.List)">ParameterDefinitions</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类">StringParameterDefinition</a>> stringParams)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html#addParam(com.offbytwo.jenkins.model.StringParameterDefinition)">addParam</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类">StringParameterDefinition</a> spd)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类">StringParameterDefinition</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html#getStringParams()">getStringParams</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html#setStringParams(java.util.List)">setStringParams</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类">StringParameterDefinition</a>> stringParams)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="ParameterDefinitions()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>ParameterDefinitions</h4>
|
||||
<pre>public ParameterDefinitions()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="ParameterDefinitions(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>ParameterDefinitions</h4>
|
||||
<pre>public ParameterDefinitions(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类">StringParameterDefinition</a>> stringParams)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getStringParams()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getStringParams</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类">StringParameterDefinition</a>> getStringParams()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setStringParams(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setStringParams</h4>
|
||||
<pre>public void setStringParams(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类">StringParameterDefinition</a>> stringParams)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="addParam(com.offbytwo.jenkins.model.StringParameterDefinition)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>addParam</h4>
|
||||
<pre>public void addParam(<a href="../../../../com/offbytwo/jenkins/model/StringParameterDefinition.html" title="com.offbytwo.jenkins.model中的类">StringParameterDefinition</a> spd)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ParameterDefinitions.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/OfflineCause.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ParametersDefinitionProperty.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ParameterDefinitions.html" target="_top">框架</a></li>
|
||||
<li><a href="ParameterDefinitions.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,282 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>ParametersDefinitionProperty</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="ParametersDefinitionProperty";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ParametersDefinitionProperty.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ParametersDefinitionProperty.html" target="_top">框架</a></li>
|
||||
<li><a href="ParametersDefinitionProperty.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 ParametersDefinitionProperty" class="title">类 ParametersDefinitionProperty</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.ParametersDefinitionProperty</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">ParametersDefinitionProperty</span>
|
||||
extends java.lang.Object</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ParametersDefinitionProperty.html#ParametersDefinitionProperty()">ParametersDefinitionProperty</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ParametersDefinitionProperty.html#ParametersDefinitionProperty(com.offbytwo.jenkins.model.ParameterDefinitions)">ParametersDefinitionProperty</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类">ParameterDefinitions</a> pd)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类">ParameterDefinitions</a></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ParametersDefinitionProperty.html#getPd()">getPd</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/ParametersDefinitionProperty.html#setPd(com.offbytwo.jenkins.model.ParameterDefinitions)">setPd</a></strong>(<a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类">ParameterDefinitions</a> pd)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="ParametersDefinitionProperty()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>ParametersDefinitionProperty</h4>
|
||||
<pre>public ParametersDefinitionProperty()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="ParametersDefinitionProperty(com.offbytwo.jenkins.model.ParameterDefinitions)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>ParametersDefinitionProperty</h4>
|
||||
<pre>public ParametersDefinitionProperty(<a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类">ParameterDefinitions</a> pd)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getPd()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getPd</h4>
|
||||
<pre>public <a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类">ParameterDefinitions</a> getPd()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setPd(com.offbytwo.jenkins.model.ParameterDefinitions)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>setPd</h4>
|
||||
<pre>public void setPd(<a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类">ParameterDefinitions</a> pd)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/ParametersDefinitionProperty.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ParameterDefinitions.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/ParametersDefinitionProperty.html" target="_top">框架</a></li>
|
||||
<li><a href="ParametersDefinitionProperty.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,630 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Plugin</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Plugin";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Plugin.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ParametersDefinitionProperty.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Plugin.html" target="_top">框架</a></li>
|
||||
<li><a href="Plugin.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 Plugin" class="title">类 Plugin</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.Plugin</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">Plugin</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#Plugin()">Plugin</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#getBackupVersion()">getBackupVersion</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类">PluginDependency</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#getDependencies()">getDependencies</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#getLongName()">getLongName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#getShortName()">getShortName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#getSupportsDynamicLoad()">getSupportsDynamicLoad</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#getUrl()">getUrl</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#getVersion()">getVersion</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#isActive()">isActive</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#isBundled()">isBundled</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#isDowngradable()">isDowngradable</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#isEnabled()">isEnabled</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#isHasUpdate()">isHasUpdate</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#isPinned()">isPinned</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setActive(boolean)">setActive</a></strong>(boolean active)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setBackupVersion(java.lang.String)">setBackupVersion</a></strong>(java.lang.String backupVersion)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setBundled(boolean)">setBundled</a></strong>(boolean bundled)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setDependencies(java.util.List)">setDependencies</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类">PluginDependency</a>> dependencies)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setDowngradable(boolean)">setDowngradable</a></strong>(boolean downgradable)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setEnabled(boolean)">setEnabled</a></strong>(boolean enabled)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setHasUpdate(boolean)">setHasUpdate</a></strong>(boolean hasUpdate)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setLongName(java.lang.String)">setLongName</a></strong>(java.lang.String longName)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setPinned(boolean)">setPinned</a></strong>(boolean pinned)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setShortName(java.lang.String)">setShortName</a></strong>(java.lang.String shortName)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setSupportsDynamicLoad(java.lang.String)">setSupportsDynamicLoad</a></strong>(java.lang.String supportsDynamicLoad)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setUrl(java.lang.String)">setUrl</a></strong>(java.lang.String url)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Plugin.html#setVersion(java.lang.String)">setVersion</a></strong>(java.lang.String version)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Plugin()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Plugin</h4>
|
||||
<pre>public Plugin()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="isActive()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isActive</h4>
|
||||
<pre>public boolean isActive()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setActive(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setActive</h4>
|
||||
<pre>public void setActive(boolean active)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getBackupVersion()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getBackupVersion</h4>
|
||||
<pre>public java.lang.String getBackupVersion()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setBackupVersion(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setBackupVersion</h4>
|
||||
<pre>public void setBackupVersion(java.lang.String backupVersion)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isBundled()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isBundled</h4>
|
||||
<pre>public boolean isBundled()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setBundled(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setBundled</h4>
|
||||
<pre>public void setBundled(boolean bundled)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isDowngradable()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isDowngradable</h4>
|
||||
<pre>public boolean isDowngradable()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setDowngradable(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setDowngradable</h4>
|
||||
<pre>public void setDowngradable(boolean downgradable)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isEnabled()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isEnabled</h4>
|
||||
<pre>public boolean isEnabled()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setEnabled(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setEnabled</h4>
|
||||
<pre>public void setEnabled(boolean enabled)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isHasUpdate()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isHasUpdate</h4>
|
||||
<pre>public boolean isHasUpdate()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setHasUpdate(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setHasUpdate</h4>
|
||||
<pre>public void setHasUpdate(boolean hasUpdate)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getLongName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getLongName</h4>
|
||||
<pre>public java.lang.String getLongName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setLongName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setLongName</h4>
|
||||
<pre>public void setLongName(java.lang.String longName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isPinned()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isPinned</h4>
|
||||
<pre>public boolean isPinned()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setPinned(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setPinned</h4>
|
||||
<pre>public void setPinned(boolean pinned)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getShortName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getShortName</h4>
|
||||
<pre>public java.lang.String getShortName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setShortName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setShortName</h4>
|
||||
<pre>public void setShortName(java.lang.String shortName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getSupportsDynamicLoad()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getSupportsDynamicLoad</h4>
|
||||
<pre>public java.lang.String getSupportsDynamicLoad()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setSupportsDynamicLoad(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setSupportsDynamicLoad</h4>
|
||||
<pre>public void setSupportsDynamicLoad(java.lang.String supportsDynamicLoad)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getUrl()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getUrl</h4>
|
||||
<pre>public java.lang.String getUrl()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setUrl(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setUrl</h4>
|
||||
<pre>public void setUrl(java.lang.String url)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getVersion()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getVersion</h4>
|
||||
<pre>public java.lang.String getVersion()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setVersion(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setVersion</h4>
|
||||
<pre>public void setVersion(java.lang.String version)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getDependencies()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDependencies</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类">PluginDependency</a>> getDependencies()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setDependencies(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setDependencies</h4>
|
||||
<pre>public void setDependencies(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类">PluginDependency</a>> dependencies)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Plugin.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/ParametersDefinitionProperty.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Plugin.html" target="_top">框架</a></li>
|
||||
<li><a href="Plugin.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,370 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>PluginDependency</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="PluginDependency";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/PluginDependency.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/PluginManager.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/PluginDependency.html" target="_top">框架</a></li>
|
||||
<li><a href="PluginDependency.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 PluginDependency" class="title">类 PluginDependency</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.PluginDependency</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">PluginDependency</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html#PluginDependency()">PluginDependency</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html#getShortName()">getShortName</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.lang.String</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html#getVersion()">getVersion</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html#isOptional()">isOptional</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html#setOptional(boolean)">setOptional</a></strong>(boolean optional)</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html#setShortName(java.lang.String)">setShortName</a></strong>(java.lang.String shortName)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html#setVersion(java.lang.String)">setVersion</a></strong>(java.lang.String version)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="PluginDependency()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>PluginDependency</h4>
|
||||
<pre>public PluginDependency()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="isOptional()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>isOptional</h4>
|
||||
<pre>public boolean isOptional()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setOptional(boolean)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setOptional</h4>
|
||||
<pre>public void setOptional(boolean optional)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getShortName()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getShortName</h4>
|
||||
<pre>public java.lang.String getShortName()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setShortName(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setShortName</h4>
|
||||
<pre>public void setShortName(java.lang.String shortName)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getVersion()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getVersion</h4>
|
||||
<pre>public java.lang.String getVersion()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setVersion(java.lang.String)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>setVersion</h4>
|
||||
<pre>public void setVersion(java.lang.String version)</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/PluginDependency.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/PluginManager.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/PluginDependency.html" target="_top">框架</a></li>
|
||||
<li><a href="PluginDependency.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,318 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>PluginManager</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="PluginManager";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/PluginManager.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Queue.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/PluginManager.html" target="_top">框架</a></li>
|
||||
<li><a href="PluginManager.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 PluginManager" class="title">类 PluginManager</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.PluginManager</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">PluginManager</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
<dl><dt><span class="strong">作者:</span></dt>
|
||||
<dd>Karl Heinz Marbaise</dd></dl>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginManager.html#PluginManager()">PluginManager</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginManager.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类">Plugin</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginManager.html#getPlugins()">getPlugins</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginManager.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/PluginManager.html#setPlugins(java.util.List)">setPlugins</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类">Plugin</a>> plugins)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="PluginManager()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>PluginManager</h4>
|
||||
<pre>public PluginManager()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getPlugins()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getPlugins</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类">Plugin</a>> getPlugins()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setPlugins(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setPlugins</h4>
|
||||
<pre>public void setPlugins(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/Plugin.html" title="com.offbytwo.jenkins.model中的类">Plugin</a>> plugins)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/PluginManager.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/PluginDependency.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/Queue.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/PluginManager.html" target="_top">框架</a></li>
|
||||
<li><a href="PluginManager.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -0,0 +1,342 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
||||
<!-- NewPage -->
|
||||
<html lang="zh">
|
||||
<head>
|
||||
<!-- Generated by javadoc (version 1.7.0_51) on Fri Mar 17 13:02:05 CST 2017 -->
|
||||
<meta http-equiv="Content-Type" content="text/html" charset="UTF-8">
|
||||
<title>Queue</title>
|
||||
<meta name="date" content="2017-03-17">
|
||||
<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="Queue";
|
||||
}
|
||||
//-->
|
||||
</script>
|
||||
<noscript>
|
||||
<div>您的浏览器已禁用 JavaScript。</div>
|
||||
</noscript>
|
||||
<!-- ========= START OF TOP NAVBAR ======= -->
|
||||
<div class="topNav"><a name="navbar_top">
|
||||
<!-- -->
|
||||
</a><a href="#skip-navbar_top" title="跳过导航链接"></a><a name="navbar_top_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Queue.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/PluginManager.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Queue.html" target="_top">框架</a></li>
|
||||
<li><a href="Queue.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_top">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</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">com.offbytwo.jenkins.model</div>
|
||||
<h2 title="类 Queue" class="title">类 Queue</h2>
|
||||
</div>
|
||||
<div class="contentContainer">
|
||||
<ul class="inheritance">
|
||||
<li>java.lang.Object</li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">com.offbytwo.jenkins.model.BaseModel</a></li>
|
||||
<li>
|
||||
<ul class="inheritance">
|
||||
<li>com.offbytwo.jenkins.model.Queue</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="description">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<hr>
|
||||
<br>
|
||||
<pre>public class <span class="strong">Queue</span>
|
||||
extends <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></pre>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="summary">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="构造器概要表, 列表构造器和解释">
|
||||
<caption><span>构造器</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colOne" scope="col">构造器和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colOne"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Queue.html#Queue()">Queue</a></strong>()</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ========== METHOD SUMMARY =========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_summary">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法概要</h3>
|
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="方法概要表, 列表方法和解释">
|
||||
<caption><span>方法</span><span class="tabEnd"> </span></caption>
|
||||
<tr>
|
||||
<th class="colFirst" scope="col">限定符和类型</th>
|
||||
<th class="colLast" scope="col">方法和说明</th>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>boolean</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Queue.html#equals(java.lang.Object)">equals</a></strong>(java.lang.Object obj)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>java.util.List<java.lang.String></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Queue.html#getDiscoverableItems()">getDiscoverableItems</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>java.util.List<<a href="../../../../com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类">QueueItem</a>></code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Queue.html#getItems()">getItems</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>int</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Queue.html#hashCode()">hashCode</a></strong>()</code> </td>
|
||||
</tr>
|
||||
<tr class="altColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Queue.html#setDiscoverableItems(java.util.List)">setDiscoverableItems</a></strong>(java.util.List<java.lang.String> discoverableItems)</code> </td>
|
||||
</tr>
|
||||
<tr class="rowColor">
|
||||
<td class="colFirst"><code>void</code></td>
|
||||
<td class="colLast"><code><strong><a href="../../../../com/offbytwo/jenkins/model/Queue.html#setItems(java.util.List)">setItems</a></strong>(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类">QueueItem</a>> items)</code> </td>
|
||||
</tr>
|
||||
</table>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_com.offbytwo.jenkins.model.BaseModel">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 com.offbytwo.jenkins.model.<a href="../../../../com/offbytwo/jenkins/model/BaseModel.html" title="com.offbytwo.jenkins.model中的类">BaseModel</a></h3>
|
||||
<code><a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#get_class()">get_class</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#getClient()">getClient</a>, <a href="../../../../com/offbytwo/jenkins/model/BaseModel.html#setClient(com.offbytwo.jenkins.client.JenkinsHttpClient)">setClient</a></code></li>
|
||||
</ul>
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="methods_inherited_from_class_java.lang.Object">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>从类继承的方法 java.lang.Object</h3>
|
||||
<code>getClass, notify, notifyAll, toString, wait, wait, wait</code></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="details">
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<!-- ========= CONSTRUCTOR DETAIL ======== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="constructor_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>构造器详细资料</h3>
|
||||
<a name="Queue()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>Queue</h4>
|
||||
<pre>public Queue()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
<!-- ============ METHOD DETAIL ========== -->
|
||||
<ul class="blockList">
|
||||
<li class="blockList"><a name="method_detail">
|
||||
<!-- -->
|
||||
</a>
|
||||
<h3>方法详细资料</h3>
|
||||
<a name="getDiscoverableItems()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getDiscoverableItems</h4>
|
||||
<pre>public java.util.List<java.lang.String> getDiscoverableItems()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setDiscoverableItems(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setDiscoverableItems</h4>
|
||||
<pre>public void setDiscoverableItems(java.util.List<java.lang.String> discoverableItems)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="hashCode()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>hashCode</h4>
|
||||
<pre>public int hashCode()</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>hashCode</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="getItems()">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>getItems</h4>
|
||||
<pre>public java.util.List<<a href="../../../../com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类">QueueItem</a>> getItems()</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="setItems(java.util.List)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockList">
|
||||
<li class="blockList">
|
||||
<h4>setItems</h4>
|
||||
<pre>public void setItems(java.util.List<<a href="../../../../com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类">QueueItem</a>> items)</pre>
|
||||
</li>
|
||||
</ul>
|
||||
<a name="equals(java.lang.Object)">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="blockListLast">
|
||||
<li class="blockList">
|
||||
<h4>equals</h4>
|
||||
<pre>public boolean equals(java.lang.Object obj)</pre>
|
||||
<dl>
|
||||
<dt><strong>覆盖:</strong></dt>
|
||||
<dd><code>equals</code> 在类中 <code>java.lang.Object</code></dd>
|
||||
</dl>
|
||||
</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="跳过导航链接"></a><a name="navbar_bottom_firstrow">
|
||||
<!-- -->
|
||||
</a>
|
||||
<ul class="navList" title="导航">
|
||||
<li><a href="../../../../overview-summary.html">概览</a></li>
|
||||
<li><a href="package-summary.html">程序包</a></li>
|
||||
<li class="navBarCell1Rev">类</li>
|
||||
<li><a href="class-use/Queue.html">使用</a></li>
|
||||
<li><a href="package-tree.html">树</a></li>
|
||||
<li><a href="../../../../deprecated-list.html">已过时</a></li>
|
||||
<li><a href="../../../../index-files/index-1.html">索引</a></li>
|
||||
<li><a href="../../../../help-doc.html">帮助</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="subNav">
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/PluginManager.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">上一个类</span></a></li>
|
||||
<li><a href="../../../../com/offbytwo/jenkins/model/QueueItem.html" title="com.offbytwo.jenkins.model中的类"><span class="strong">下一个类</span></a></li>
|
||||
</ul>
|
||||
<ul class="navList">
|
||||
<li><a href="../../../../index.html?com/offbytwo/jenkins/model/Queue.html" target="_top">框架</a></li>
|
||||
<li><a href="Queue.html" target="_top">无框架</a></li>
|
||||
</ul>
|
||||
<ul class="navList" id="allclasses_navbar_bottom">
|
||||
<li><a href="../../../../allclasses-noframe.html">所有类</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>概要: </li>
|
||||
<li>嵌套 | </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_summary">构造器</a> | </li>
|
||||
<li><a href="#method_summary">方法</a></li>
|
||||
</ul>
|
||||
<ul class="subNavList">
|
||||
<li>详细资料: </li>
|
||||
<li>字段 | </li>
|
||||
<li><a href="#constructor_detail">构造器</a> | </li>
|
||||
<li><a href="#method_detail">方法</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<a name="skip-navbar_bottom">
|
||||
<!-- -->
|
||||
</a></div>
|
||||
<!-- ======== END OF BOTTOM NAVBAR ======= -->
|
||||
</body>
|
||||
</html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue