Table of Contents

Class Java

Namespace
ZeroInstall.Publish.EntryPoints
Assembly
ZeroInstall.Publish.dll

A compiled Java application.

[Equatable]
public abstract class Java : Candidate, IEquatable<Candidate>, IEquatable<Java>
Inheritance
Java
Implements
Derived
Inherited Members

Properties

ExternalDependencies

Does this application have external dependencies that need to be injected by Zero Install? Only enable if you are sure!

public bool ExternalDependencies { get; set; }

Property Value

bool

GuiOnly

Does this application have a graphical interface an no terminal output? Only enable if you are sure!

public bool GuiOnly { get; set; }

Property Value

bool

MinimumRuntimeVersion

The minimum version of the Java Runtime Environment required by the application.

[TypeConverter(typeof(JavaVersionConverter))]
public ImplementationVersion? MinimumRuntimeVersion { get; set; }

Property Value

ImplementationVersion

Methods

Equals(object?)

Determines whether the specified object is equal to the current object.

public override bool Equals(object? obj)

Parameters

obj object

The object to compare with the current object.

Returns

bool

true if the specified object is equal to the current object; otherwise, false.

Equals(Java?)

protected bool Equals(Java? other)

Parameters

other Java

Returns

bool

GetHashCode()

Serves as the default hash function.

public override int GetHashCode()

Returns

int

A hash code for the current object.

Operators

operator ==(Java?, Java?)

Indicates whether the object on the left is equal to the object on the right.

public static bool operator ==(Java? left, Java? right)

Parameters

left Java

The left object

right Java

The right object

Returns

bool

true if the objects are equal; otherwise, false.

operator !=(Java?, Java?)

Indicates whether the object on the left is not equal to the object on the right.

public static bool operator !=(Java? left, Java? right)

Parameters

left Java

The left object

right Java

The right object

Returns

bool

true if the objects are not equal; otherwise, false.